diff options
Diffstat (limited to 'app/class/controllerhome.php')
-rw-r--r-- | app/class/controllerhome.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/class/controllerhome.php b/app/class/controllerhome.php index 31d27c3..4d5feb8 100644 --- a/app/class/controllerhome.php +++ b/app/class/controllerhome.php @@ -1,13 +1,13 @@ <?php -class Controllerhome extends Controllerdb +class Controllerhome extends Controller { protected $modelhome; protected $opt; - public function __construct() { - parent::__construct(); + public function __construct($render) { + parent::__construct($render); $this->modelhome = new Modelhome; } |