From d821a6402e97bf2629f175dc5b49018d37e377ea Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 25 Sep 2009 22:43:50 +0000 Subject: [PATCH] - Reverse the calling order too --- common.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.inc.php b/common.inc.php index a5bd1b8..9289c5b 100644 --- a/common.inc.php +++ b/common.inc.php @@ -1152,11 +1152,11 @@ function notice_($str, $i18n_array=array(), $timeout=-1, $type='notice') function happy_($str, $i18n_array=array(), $timeout=-1) { - notice_($str, $timeout, $i18n_array, 'happy'); + notice_($str, $i18n_array, $timeout, 'happy'); } function error_($str, $i18n_array=array(), $timeout=-1) { - notice_($str, $timeout, $i18n_array, 'error'); + notice_($str, $i18n_array, $timeout, 'error'); }