From b6ff9101e6d06523d8d3f17453f6084f6ddb1179 Mon Sep 17 00:00:00 2001 From: freespace Date: Fri, 29 Oct 2004 11:40:32 +0000 Subject: [PATCH] Sync with english. --- .../section-template-cache-handler-func.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ru/programmers/advanced-features/section-template-cache-handler-func.xml b/docs/ru/programmers/advanced-features/section-template-cache-handler-func.xml index 9a150064..ee6f54da 100644 --- a/docs/ru/programmers/advanced-features/section-template-cache-handler-func.xml +++ b/docs/ru/programmers/advanced-features/section-template-cache-handler-func.xml @@ -1,6 +1,6 @@ - + Управление кэшированием @@ -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;