We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd9ef2e commit 15d426cCopy full SHA for 15d426c
2 files changed
interface/web/dashboard/dashlets/limits.php
@@ -106,8 +106,9 @@ function show() {
106
$tpl = new tpl;
107
$tpl->newTemplate("dashlets/templates/limits.htm");
108
109
+ $wb = array();
110
$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_dashlet_limits.lng';
- include($lng_file);
111
+ if(is_file($lng_file)) include($lng_file);
112
$tpl->setVar($wb);
113
114
if($app->auth->is_admin()) {
interface/web/dashboard/dashlets/modules.php
@@ -11,8 +11,9 @@ function show() {
11
12
$tpl->newTemplate("dashlets/templates/modules.htm");
13
14
15
$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_dashlet_modules.lng';
16
17
18
19
/*
0 commit comments