Sync with english.

This commit is contained in:
freespace
2004-10-29 11:40:32 +00:00
parent 1eb719c89f
commit b6ff9101e6

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="windows-1251"?>
<!-- $Revision$ -->
<!-- EN-Revision: 1.2 Maintainer: tony2001 Status: ready -->
<!-- EN-Revision: 1.3 Maintainer: freespace Status: ready -->
<sect1 id="section.template.cache.handler.func">
<title><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></title>
<para>
@@ -85,9 +85,9 @@ function mysql_cache_handler($action, &$smarty_obj, &$cache_content, $tpl_file=n
$row = mysql_fetch_array($results,MYSQL_ASSOC);
if($use_gzip && function_exists("gzuncompress")) {
$cache_contents = gzuncompress($row["CacheContents"]);
$cache_content = gzuncompress($row["CacheContents"]);
} else {
$cache_contents = $row["CacheContents"];
$cache_content = $row["CacheContents"];
}
$return = $results;
break;