We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed51bf8 commit 4d190a6Copy full SHA for 4d190a6
app/core/Controller.php
@@ -44,13 +44,15 @@ public function view($view, $data = []){
44
*/
45
if(!isset($data['lang']['main'])){
46
require_once("../app/languages/" . LANGUAGE . "/main.php");
47
- $data['lang']['main'] = LANGUAGE;
+ /* $lang is an array that is defined in the language file. */
48
+ $data['lang']['main'] = $lang;
49
}
50
51
$data['view'] = $view;
52
if(!isset($data['lang'][$view])){
53
require_once("../app/languages/" . LANGUAGE . "/". $view .".php");
- $data['lang'][$view] = LANGUAGE;
54
55
+ $data['lang'][$view] = $lang;
56
57
58
//including the header, the view and the footer
0 commit comments