]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
revert to common_user_error, which is what is used everywhere
authorEvan Prodromou <evan@prodromou.name>
Thu, 26 Jun 2008 22:50:02 +0000 (18:50 -0400)
committerEvan Prodromou <evan@prodromou.name>
Thu, 26 Jun 2008 22:50:02 +0000 (18:50 -0400)
darcs-hash:20080626225002-84dde-898a118457577e321f426270f8c98072962341ab.gz

lib/util.php

index e865a2b4179ed997325809540b81e3f03f00eeb6..eb824f4b8f27d962d732dd655e1d2ba6fcede454 100644 (file)
@@ -44,7 +44,7 @@ function common_server_error($msg, $code=500) {
 }
 
 # Show a user error
-function common_client_error($msg, $code=400) {
+function common_user_error($msg, $code=400) {
        static $status = array(400 => 'Bad Request',
                                                   401 => 'Unauthorized',
                                                   402 => 'Payment Required',
@@ -136,7 +136,7 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=
                                                                  common_accept_to_prefs(PAGE_TYPE_PREFS));
 
        if (!$type) {
-               common_client_error(_t('This page is not available in a media type you accept'), 406);
+               common_user_error(_t('This page is not available in a media type you accept'), 406);
                exit(0);
        }