]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix a dirty function preventing showing errors
authorBrice Maron <brice@bmaron.net>
Mon, 3 Dec 2012 22:53:06 +0000 (22:53 +0000)
committerBrice Maron <brice@bmaron.net>
Mon, 3 Dec 2012 22:53:06 +0000 (22:53 +0000)
lib/template.php

index 868d5f2ba2e04a7f5354440c0792db87faba59bd..04667d73a2c46f5de9a03944b430907005c4a972 100644 (file)
@@ -497,18 +497,14 @@ class OC_Template{
                return $content->printPage();
        }
 
-        /**
-         * @brief Print a fatal error page and terminates the script
-         * @param string $error The error message to show
-         * @param string $hint An option hint message
-         */
-        public static function printErrorPage( $error, $hint = '' ) {
-                $error['error']=$error;
-                $error['hint']=$hint;
-                $errors[]=$error;
-                OC_Template::printGuestPage("", "error", array("errors" => $errors));
-                die();
-        }
-
-
+       /**
+               * @brief Print a fatal error page and terminates the script
+               * @param string $error The error message to show
+               * @param string $hint An option hint message
+               */
+       public static function printErrorPage( $error_msg, $hint = '' ) {
+               $errors = array(array('error' => $error_msg, 'hint' => $hint));
+               OC_Template::printGuestPage("", "error", array("errors" => $errors));
+               die();
+       }
 }