Fixed typo in variable name

* Still had a lingering ->site when the interrogated variable moved to ->module.
This commit is contained in:
Josh Sherman 2010-03-14 18:53:59 -04:00
parent efad51e92f
commit a2073f71c4

View file

@ -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];
}