Skip to content

Commit 4d190a6

Browse files
committed
reversing a mistake.
1 parent ed51bf8 commit 4d190a6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/core/Controller.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,15 @@ public function view($view, $data = []){
4444
*/
4545
if(!isset($data['lang']['main'])){
4646
require_once("../app/languages/" . LANGUAGE . "/main.php");
47-
$data['lang']['main'] = LANGUAGE;
47+
/* $lang is an array that is defined in the language file. */
48+
$data['lang']['main'] = $lang;
4849
}
4950

5051
$data['view'] = $view;
5152
if(!isset($data['lang'][$view])){
5253
require_once("../app/languages/" . LANGUAGE . "/". $view .".php");
53-
$data['lang'][$view] = LANGUAGE;
54+
/* $lang is an array that is defined in the language file. */
55+
$data['lang'][$view] = $lang;
5456
}
5557

5658
//including the header, the view and the footer

0 commit comments

Comments
 (0)