diff options
author | Silvio <silvio@devlet.com.br> | 2010-08-20 16:55:05 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-08-20 16:55:05 -0300 |
commit | 29e055f10a5ddf6424415c9cd9265d9d38e46ab3 (patch) | |
tree | 81c335672c2e4452e0ae0b6354565e7fa2e55a00 /apps/index.php | |
parent | bf67bc20b46f3e464a21ca618e367efa503c6df6 (diff) | |
download | cinisis-29e055f10a5ddf6424415c9cd9265d9d38e46ab3.tar.gz cinisis-29e055f10a5ddf6424415c9cd9265d9d38e46ab3.tar.bz2 |
Code cleanup
Diffstat (limited to 'apps/index.php')
-rw-r--r-- | apps/index.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/index.php b/apps/index.php index c34d4c3..0d88fd5 100644 --- a/apps/index.php +++ b/apps/index.php @@ -31,11 +31,8 @@ if ($isis->db) { $display->navbar($entry, $entries); // Format output. - echo "<pre>\n"; - echo "Showing entry $entry from $entries total entries.\n"; - echo "\n"; - print_r($result); - echo '</pre>'; + $display->pre("Showing entry $entry from $entries total entries."); + $display->dump($result); } $display->footer(); |