From: Leandro Lucarella Date: Wed, 28 Apr 2004 22:39:45 +0000 (+0000) Subject: Se hace el display antes del exit en el dump(). X-Git-Tag: svn_import~49 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/a2a6a5f4d1500867db74046d8937f63ad3a7e82f Se hace el display antes del exit en el dump(). --- diff --git a/lib/MECON/HTML/Page.php b/lib/MECON/HTML/Page.php index 492012a..e43ba41 100644 --- a/lib/MECON/HTML/Page.php +++ b/lib/MECON/HTML/Page.php @@ -100,8 +100,12 @@ class MECON_HTML_Page extends HTML_Page { $this->addBodyContent('
');
         $this->addBodyContent($this->_dump->r_display($var));
         $this->addBodyContent('
'); - if ($exit) exit; + if ($exit) { + $this->display(); + exit; + } } } + ?> \ No newline at end of file