diff options
| author | Uwe.Tews <uwe.tews@localhost> | 2009-12-01 20:34:32 +0000 |
|---|---|---|
| committer | Uwe.Tews <uwe.tews@localhost> | 2009-12-01 20:34:32 +0000 |
| commit | 7e45bcf52738979add2a3675de2349e80a4632a3 (patch) | |
| tree | f29c1f00d5d02c017fd3be761eac791dedbbc36e /libs/plugins/function.html_table.php | |
| parent | e5cd6c8a174f9a8e36f5e88543e23eac3a84ef15 (diff) | |
| download | smarty-7e45bcf52738979add2a3675de2349e80a4632a3.tar.gz smarty-7e45bcf52738979add2a3675de2349e80a4632a3.tar.bz2 smarty-7e45bcf52738979add2a3675de2349e80a4632a3.zip | |
- replaced most hard errors (exceptions) by softerrors(trigger_error) in plugins
Diffstat (limited to 'libs/plugins/function.html_table.php')
| -rw-r--r-- | libs/plugins/function.html_table.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/plugins/function.html_table.php b/libs/plugins/function.html_table.php index 8f7afd2e..198b03ca 100644 --- a/libs/plugins/function.html_table.php +++ b/libs/plugins/function.html_table.php @@ -63,7 +63,7 @@ function smarty_function_html_table($params, $smarty, $template) $caption = ''; if (!isset($params['loop'])) { - throw new Exception ("html_table: missing 'loop' parameter"); + trigger_error("html_table: missing 'loop' parameter",E_USER_WARNING); return; } |
