]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Page.php
Se hace el display antes del exit en el dump().
[mecon/meconlib.git] / lib / MECON / HTML / Page.php
index c50bf219304e9e62251115f6d6ed3a5ff6849c46..e43ba412872940cd97307d8236c76a1c4ca5e8aa 100644 (file)
@@ -40,7 +40,7 @@ class MECON_HTML_Page extends HTML_Page {
      * @return void
      * @access public
      */
-    function MECON_HTML_Page() // ~X2C
+    function MECON_HTML_Page()
     {
         parent::HTML_Page(
                 array (
@@ -100,8 +100,12 @@ class MECON_HTML_Page extends HTML_Page {
         $this->addBodyContent('<pre>');
         $this->addBodyContent($this->_dump->r_display($var));
         $this->addBodyContent('</pre>');
-        if ($exit) exit;
+        if ($exit) {
+            $this->display();
+            exit;
+        }
     }
 
 }
+
 ?>
\ No newline at end of file