Commit e53a0374 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(management) Avoid PHP error and debug display

issue #5135
Showing with 7 additions and 1 deletion
+7 -1
...@@ -32,6 +32,13 @@ class ManagementColumnAttribute extends CompositeAttribute ...@@ -32,6 +32,13 @@ class ManagementColumnAttribute extends CompositeAttribute
*/ */
class ManagementConfigurationDialog extends simplePlugin class ManagementConfigurationDialog extends simplePlugin
{ {
static function plInfo ()
{
return array(
'plShortName' => 'ManagementConfigurationDialog',
);
}
static function getAttributesInfo () static function getAttributesInfo ()
{ {
global $class_mapping; global $class_mapping;
...@@ -112,7 +119,6 @@ class ManagementConfigurationDialog extends simplePlugin ...@@ -112,7 +119,6 @@ class ManagementConfigurationDialog extends simplePlugin
function execute () function execute ()
{ {
var_dump($this->managementColumns);
$smarty = get_smarty(); $smarty = get_smarty();
$smarty->assign('ManagementConfigurationACL', 'rw'); $smarty->assign('ManagementConfigurationACL', 'rw');
$str = parent::execute(); $str = parent::execute();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment