]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Page.php
Se renombra error a exitError() y se hace que acepte un PEAR_Error.
[mecon/meconlib.git] / lib / MECON / HTML / Page.php
index b0e84297b4fdf62ac47cf12bae2667ced50e5376..aaac822e71528d77a2a804f517004cf1b0b31082 100644 (file)
@@ -74,11 +74,14 @@ class MECON_HTML_Page extends HTML_Page {
     }
 
     /**
     }
 
     /**
-     * Muestra un error a través y termina el programa.
+     * Muestra un error y termina el programa.
      */
      */
-    function error($msg)
+    function exitError($msg)
     {
         require_once 'MECON/HTML/Error.php';
     {
         require_once 'MECON/HTML/Error.php';
+        if (is_a($msg, 'pear_error')) {
+            $msg = $msg->getMessage();
+        }
         $this->addBodyContent(new MECON_HTML_Error($msg));
         $this->display();
         exit;
         $this->addBodyContent(new MECON_HTML_Error($msg));
         $this->display();
         exit;