fix occasional notices on undefined variables

This commit is contained in:
messju
2006-07-08 08:08:29 +00:00
parent bd46e206e9
commit b68f354f23

View File

@@ -48,8 +48,9 @@ function smarty_function_html_table($params, &$smarty)
{ {
$table_attr = 'border="1"'; $table_attr = 'border="1"';
$tr_attr = ''; $tr_attr = '';
$th_attr = '';
$td_attr = ''; $td_attr = '';
$cols_count = 3; $cols = $cols_count = 3;
$rows = 3; $rows = 3;
$trailpad = ' '; $trailpad = ' ';
$vdir = 'down'; $vdir = 'down';