Fixed the lost default parameter in the function.

This commit is contained in:
mdtrooper 2015-05-06 16:28:57 +02:00
parent 249e2e730d
commit 94313bb249

View File

@ -82,7 +82,10 @@ function reports_get_report ($id_report, $filter = false, $fields = false) {
* *
* @return array An array with all the reports the user can view. * @return array An array with all the reports the user can view.
*/ */
function reports_get_reports ($filter = false, $fields = false, $returnAllGroup = true, $privileges = 'RR', $group = false, $strict_user) { function reports_get_reports ($filter = false, $fields = false,
$returnAllGroup = true, $privileges = 'RR', $group = false,
$strict_user = false) {
global $config; global $config;
if (! is_array ($filter)) if (! is_array ($filter))