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:
juanmanuelr 2012-04-25 20:05:14 +00:00
parent e758a1dbcb
commit 3aa630a1b9
2 changed files with 7 additions and 2 deletions

View File

@ -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> 2012-04-25 Sancho Lerena <slerena@artica.es>
* general/error_emptyconfig.php, * general/error_emptyconfig.php,

View File

@ -153,7 +153,7 @@ switch ($action) {
case 'main': $buttons['list_reports']['active'] = true; case 'main': $buttons['list_reports']['active'] = true;
$subsection = ' &raquo; '.__('Custom reporting'); $subsection = ' &raquo; '.__('Custom reporting');
break; break;
default: $subsection = reporting_enterprise_add_subsection_main($activeTab, &$buttons); default: $subsection = reporting_enterprise_add_subsection_main($activeTab, $buttons);
break; break;
} }
@ -864,7 +864,7 @@ switch ($action) {
case 'main': $buttons['list_reports']['active'] = true; case 'main': $buttons['list_reports']['active'] = true;
$subsection = ' &raquo; '.__('Custom reporting'); $subsection = ' &raquo; '.__('Custom reporting');
break; break;
default: $subsection = reporting_enterprise_add_subsection_main($activeTab, &$buttons); default: $subsection = reporting_enterprise_add_subsection_main($activeTab, $buttons);
break; break;
} }