fixed variable-names in example. thanks to Hpatoio

This commit is contained in:
messju
2004-10-29 10:00:55 +00:00
parent 029c99280d
commit 1eb719c89f

View File

@@ -82,9 +82,9 @@ function mysql_cache_handler($action, &$smarty_obj, &$cache_content, $tpl_file=n
$row = mysql_fetch_array($results,MYSQL_ASSOC); $row = mysql_fetch_array($results,MYSQL_ASSOC);
if($use_gzip && function_exists("gzuncompress")) { if($use_gzip && function_exists("gzuncompress")) {
$cache_contents = gzuncompress($row["CacheContents"]); $cache_content = gzuncompress($row["CacheContents"]);
} else { } else {
$cache_contents = $row["CacheContents"]; $cache_content = $row["CacheContents"];
} }
$return = $results; $return = $results;
break; break;