File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ public function __construct(){
22
22
23
23
//setting the langauge to default language if not specified.
24
24
25
- if (file_exists ('../app/languages/ ' . $ req [0 ])){
25
+ if ($ req != NULL && file_exists ('../app/languages/ ' . $ req [0 ])){
26
26
define ('LANGUAGE ' , array_shift ($ req ));
27
27
}else {
28
- define ('LANGUAGE ' , $ language );
28
+ define ('LANGUAGE ' , $ this -> language );
29
29
}
30
30
31
31
if (file_exists ('../app/controllers/ ' . $ req [0 ] . '.php ' )){
Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ public function view($view, $data = []){
44
44
*/
45
45
if (!isset ($ data ['lang ' ]['main ' ])){
46
46
require_once ("../app/languages/ " . LANGUAGE . "/main.php " );
47
- $ data ['lang ' ]['main ' ] = $ lang ;
47
+ $ data ['lang ' ]['main ' ] = LANGUAGE ;
48
48
}
49
49
50
50
$ data ['view ' ] = $ view ;
51
51
if (!isset ($ data ['lang ' ][$ view ])){
52
52
require_once ("../app/languages/ " . LANGUAGE . "/ " . $ view .".php " );
53
- $ data ['lang ' ][$ view ] = $ lang ;
53
+ $ data ['lang ' ][$ view ] = LANGUAGE ;
54
54
}
55
55
56
56
//including the header, the view and the footer
You can’t perform that action at this time.
0 commit comments