- Reverse the calling order too

This commit is contained in:
dave 2009-09-25 22:43:50 +00:00
parent aecbabbb4a
commit d821a6402e

View File

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