mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-06 03:14:27 +02:00
fix occasional notices on undefined variables
This commit is contained in:
@@ -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';
|
||||||
|
Reference in New Issue
Block a user