2012-04-25 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/reporting/reporting_builder.php: Removed PHP notices due to a deprecated argument pass by reference. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6175 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e758a1dbcb
commit
3aa630a1b9
|
@ -1,3 +1,8 @@
|
|||
2012-04-25 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* godmode/reporting/reporting_builder.php: Removed PHP notices due to a
|
||||
deprecated argument pass by reference.
|
||||
|
||||
2012-04-25 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* general/error_emptyconfig.php,
|
||||
|
|
|
@ -153,7 +153,7 @@ switch ($action) {
|
|||
case 'main': $buttons['list_reports']['active'] = true;
|
||||
$subsection = ' » '.__('Custom reporting');
|
||||
break;
|
||||
default: $subsection = reporting_enterprise_add_subsection_main($activeTab, &$buttons);
|
||||
default: $subsection = reporting_enterprise_add_subsection_main($activeTab, $buttons);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -864,7 +864,7 @@ switch ($action) {
|
|||
case 'main': $buttons['list_reports']['active'] = true;
|
||||
$subsection = ' » '.__('Custom reporting');
|
||||
break;
|
||||
default: $subsection = reporting_enterprise_add_subsection_main($activeTab, &$buttons);
|
||||
default: $subsection = reporting_enterprise_add_subsection_main($activeTab, $buttons);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue