Fixed PHP Warnings

This commit is contained in:
mdtrooper 2015-05-22 13:22:12 +02:00
parent 3d32d5645e
commit 83967d3526
2 changed files with 6 additions and 3 deletions

View File

@ -14,6 +14,7 @@
// GNU General Public License for more details. // GNU General Public License for more details.
if(!isset($table->width)) { if(!isset($table->width)) {
$table = new stdClass();
$table->width = '100%'; $table->width = '100%';
} }

View File

@ -420,6 +420,7 @@ else {
//---------------------------------------------------------------------- //----------------------------------------------------------------------
//- INI ADVANCE FILTER ------------------------------------------------- //- INI ADVANCE FILTER -------------------------------------------------
$table_advanced = new stdClass();
$table_advanced->id = 'events_filter_form_advanced'; $table_advanced->id = 'events_filter_form_advanced';
$table_advanced->width = '98%'; $table_advanced->width = '98%';
$table_advanced->cellspacing = 4; $table_advanced->cellspacing = 4;
@ -543,6 +544,7 @@ $table_advanced->rowclass[] = '';
//- END ADVANCE FILTER ------------------------------------------------- //- END ADVANCE FILTER -------------------------------------------------
$table = new stdClass();
$table->id = 'events_filter_form'; $table->id = 'events_filter_form';
$table->width = '100%'; $table->width = '100%';
$table->cellspacing = 4; $table->cellspacing = 4;