make cache engines work <_<

This commit is contained in:
Shish
2009-01-20 03:54:43 -08:00
parent 03bee56193
commit fcca11f20c
2 changed files with 15 additions and 6 deletions

View File

@@ -528,8 +528,8 @@ function get_debug_info() {
$i_files = count(get_included_files());
global $_execs;
global $database;
$hits = $database->cache->hits;
$miss = $database->cache->misses;
$hits = $database->cache->get_hits();
$miss = $database->cache->get_misses();
$debug = "<br>Took $i_utime + $i_stime seconds and {$i_mem}MB of RAM";
$debug .= "; Used $i_files files and $_execs queries";
$debug .= "; Sent $_event_count events";