Skip to content
Snippets Groups Projects
Commit 6e420949 authored by Marius Burkard's avatar Marius Burkard
Browse files

- fixed parameter naming in app.inc.php (interface)

parent 11210250
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ class app {
$this->uses($prop);
if(property_exists($this, $prop)) return $this->{$prop};
else trigger_error('Undefined property ' . $name . ' of class app', E_USER_WARNING);
else trigger_error('Undefined property ' . $prop . ' of class app', E_USER_WARNING);
}
public function __destruct() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment