diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 7ac3029f80..c5deebcb9f 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2014-03-11 Miguel de Dios + + * include/functions_html.php: fixed the PHP warning in the function + "html_get_predefined_table". + + Incident: #492 + 2014-03-11 Miguel de Dios * include/javascript/pandora_modules.js: fixed the javascript to diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 21bf60c949..1afddf8f4b 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -1176,6 +1176,8 @@ function html_get_predefined_table ($model = 'transparent', $columns = 4) { switch($model) { case 'transparent': default: + $table = new stdClass(); + $table->class = "none"; $table->cellpadding = 0; $table->cellspacing = 0;