From 15b8f0b3a4a573af35ddbd478cbd7d4f1f8cea4c Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Sat, 30 Jul 2011 07:10:20 +0000 Subject: fixed little error: no submission is possible when updating the website - corrected also for anonymous users --- h-source/Application/Controllers/UsersController.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'h-source/Application/Controllers/UsersController.php') diff --git a/h-source/Application/Controllers/UsersController.php b/h-source/Application/Controllers/UsersController.php index b8fe57e..0e00523 100644 --- a/h-source/Application/Controllers/UsersController.php +++ b/h-source/Application/Controllers/UsersController.php @@ -23,8 +23,6 @@ if (!defined('EG')) die('Direct access not allowed!'); class UsersController extends BaseController { - private $_updating; - public function __construct($model, $controller, $queryString) { parent::__construct($model, $controller, $queryString); @@ -32,12 +30,7 @@ class UsersController extends BaseController $this->model('UsersModel'); $this->model('ProfileModel'); $this->model('HardwareModel'); - $this->model('ParamsModel'); - - $updating = $this->m['ParamsModel']->select('updating')->where(array('id_par'=>1))->toList('updating')->send(); - $data['updating_flag'] = $updating[0]; - $this->_updating = $data['updating_flag']; - + $data['title'] = 'Login'; $this->append($data); } -- cgit v1.2.3