Skip to content

Commit 6e42094

Browse files
author
Marius Burkard
committed
- fixed parameter naming in app.inc.php (interface)
1 parent 1121025 commit 6e42094

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
@@ -78,7 +78,7 @@ public function __get($prop) {
7878

7979
$this->uses($prop);
8080
if(property_exists($this, $prop)) return $this->{$prop};
81-
else trigger_error('Undefined property ' . $name . ' of class app', E_USER_WARNING);
81+
else trigger_error('Undefined property ' . $prop . ' of class app', E_USER_WARNING);
8282
}
8383

8484
public function __destruct() {

0 commit comments

Comments
 (0)