]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se hace el display antes del exit en el dump().
authorLeandro Lucarella <llucax@gmail.com>
Wed, 28 Apr 2004 22:39:45 +0000 (22:39 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 28 Apr 2004 22:39:45 +0000 (22:39 +0000)
lib/MECON/HTML/Page.php

index 492012a68a4bcbafde1dce58ad51116e58de2c78..e43ba412872940cd97307d8236c76a1c4ca5e8aa 100644 (file)
@@ -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