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/BaseController.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'h-source/Application/Controllers/BaseController.php') diff --git a/h-source/Application/Controllers/BaseController.php b/h-source/Application/Controllers/BaseController.php index eb8042d..0954d2f 100644 --- a/h-source/Application/Controllers/BaseController.php +++ b/h-source/Application/Controllers/BaseController.php @@ -29,6 +29,7 @@ class BaseController extends Controller protected $isadmin = false; protected $querySanitized = true; protected $token = 'token'; + protected $_updating; protected $_topMenuClasses = array( "home" => null, @@ -50,6 +51,7 @@ class BaseController extends Controller $this->model('BoxesModel'); $this->model('HistoryModel'); + $this->model('ParamsModel'); $this->load('header'); $this->load('footer','last'); @@ -102,6 +104,11 @@ class BaseController extends Controller $data['querySanitized'] = $this->querySanitized; $data['queryString'] = Url::createUrl($this->_queryString); + //check it they are updating the website + $updating = $this->m['ParamsModel']->select('updating')->where(array('id_par'=>1))->toList('updating')->send(); + $data['updating_flag'] = $updating[0]; + $this->_updating = $data['updating_flag']; + $this->append($data); } -- cgit v1.2.3