Added the Form class and updated the configuration arrangement.

This commit is contained in:
Josh Sherman 2010-09-26 20:07:50 -04:00
parent cd1593a045
commit b210803e81
5 changed files with 397 additions and 15 deletions

View file

@ -200,9 +200,9 @@ class Module extends Object
{
if ($this->$name == null)
{
if (isset($this->config->module[$name]))
if (isset($this->config->pickles[$name]))
{
$this->$name = $this->config->module[$name];
$this->$name = $this->config->pickles[$name];
}
else
{