protected function action_massupdate() { //bug: 44857 - Reports calls MasUpdate passing back the 'module' parameter, but that is also a parameter in the database //so when we call MassUpdate with $addAllBeanFields then it will use this in the query. if (!empty($_REQUEST['current_query_by_page'])) { $query = unserialize(base64_decode($_REQUEST['current_query_by_page'])); if (!empty($query['module'])) { unset($query['module']); $_REQUEST['current_query_by_page'] = base64_encode(serialize($query)); } } parent::action_massupdate(); }
protected function action_massupdate() { $this->dieIfNotAdmin(); parent::action_massupdate(); }