Skip to content

Commit 65be951

Browse files
author
Till Brehm
committed
Fixed PHP Warning: Undefined property wb of class app in /usr/local/ispconfig/interface/lib/app.inc.php on line 81
1 parent efda224 commit 65be951

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/lib/app.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public function lng($text) {
248248
}
249249
$this->_language_inc = 1;
250250
}
251-
if(isset($this->_wb[$text]) && $this->wb[$text] !== '') {
251+
if(isset($this->_wb[$text]) && $this->_wb[$text] !== '') {
252252
$text = $this->_wb[$text];
253253
} else {
254254
if($this->_conf['debug_language']) {

0 commit comments

Comments
 (0)