diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 7a0faced18..a3af2c6558 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2009-03-12 Esteban Sanchez + + * include/functions_db.php: Fixed an undefined variable error. + 2009-03-12 Esteban Sanchez * reporting/pandora_graph.php: Added to repository. New interface to diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index 88566bf9de..34cb379955 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -1971,6 +1971,7 @@ function format_array_to_where_clause_sql ($values, $join = 'AND', $prefix = fal $limit = ''; $offset = ''; $order = ''; + $group = ''; if (isset ($values['limit'])) { $limit = sprintf (' LIMIT %d', $values['limit']); unset ($values['limit']);