smarty: fix handling extra parameters in add_error() & add_message()
This commit is contained in:
parent
ced73d660e
commit
6b20a4a526
1 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ if (!isset($_SESSION['errors']))
|
|||
$_SESSION['errors']=array();
|
||||
function add_error($error) {
|
||||
// If more than one arguments passed, format error message using sprintf
|
||||
if (func_num_args() > 2) {
|
||||
if (func_num_args() > 1) {
|
||||
$error = call_user_func_array(
|
||||
'sprintf',
|
||||
array_merge(array($error), array_slice(func_get_args(), 1))
|
||||
|
@ -99,7 +99,7 @@ if (!isset($_SESSION['messages']))
|
|||
$_SESSION['messages']=array();
|
||||
function add_message($message) {
|
||||
// If more than one arguments passed, format message using sprintf
|
||||
if (func_num_args() > 2) {
|
||||
if (func_num_args() > 1) {
|
||||
$message = call_user_func_array(
|
||||
'sprintf',
|
||||
array_merge(array($message), array_slice(func_get_args(), 1))
|
||||
|
|
Loading…
Reference in a new issue