Fixed typo in variable name
* Still had a lingering ->site when the interrogated variable moved to ->module.
This commit is contained in:
parent
efad51e92f
commit
a2073f71c4
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ class Module extends Object
|
|||
{
|
||||
if ($this->$name == null)
|
||||
{
|
||||
if (isset($this->config->site[$name]))
|
||||
if (isset($this->config->module[$name]))
|
||||
{
|
||||
$this->$name = $this->config->module[$name];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue