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
1 changed files with 4 additions and 1 deletions
pandora_console/include

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.
*/
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;
if (! is_array ($filter))