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'); }