From a337021c319f417250546bcd8edab5d85d25287d Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 7 Nov 2016 22:20:13 +0100 Subject: [PATCH] chache: correct misspelling --- include/cache.php | 8 ++++---- include/socgraph.php | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/include/cache.php b/include/cache.php index eee61dcd9e..0d12f8aefc 100644 --- a/include/cache.php +++ b/include/cache.php @@ -87,9 +87,9 @@ class Cache { $cached = $memcache->get(get_app()->get_hostname().":".$key); $value = @unserialize($cached); - // Only return a value if the serialized value is valid and + // Only return a value if the serialized value is valid. // We also check if the db entry is a serialized - // boolean 'false' value which we want to return) + // boolean 'false' value (which we want to return). if ($cached === 'b:0;' || $value !== false) { return $value; } @@ -108,9 +108,9 @@ class Cache { $cached = $r[0]['v']; $value = @unserialize($cached); - // Only return a value if the serialized value is valid and + // Only return a value if the serialized value is valid. // We also check if the db entry is a serialized - // boolean 'false' value which we want to return) + // boolean 'false' value (which we want to return). if ($cached === 'b:0;' || $value !== false) { return $value; } diff --git a/include/socgraph.php b/include/socgraph.php index d4ecec459f..421a68cc9e 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1079,8 +1079,8 @@ function suggestion_query($uid, $start = 0, $limit = 80) { return array(); } -// Uncommented because the result of the queries are to big to store it in the cache -// We need to decide if we want to change the db column type or if we want to delte it +// Uncommented because the result of the queries are to big to store it in the cache. +// We need to decide if we want to change the db column type or if we want to delete it. // $list = Cache::get("suggestion_query:".$uid.":".$start.":".$limit); // if (!is_null($list)) { // return $list; @@ -1118,8 +1118,8 @@ function suggestion_query($uid, $start = 0, $limit = 80) { ); if (count($r) && count($r) >= ($limit -1)) { -// Uncommented because the result of the queries are to big to store it in the cache -// We need to decide if we want to change the db column type or if we want to delte it +// Uncommented because the result of the queries are to big to store it in the cache. +// We need to decide if we want to change the db column type or if we want to delete it. // Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES); return $r; @@ -1152,8 +1152,8 @@ function suggestion_query($uid, $start = 0, $limit = 80) { while (sizeof($list) > ($limit)) array_pop($list); -// Uncommented because the result of the queries are to big to store it in the cache -// We need to decide if we want to change the db column type or if we want to delte it +// Uncommented because the result of the queries are to big to store it in the cache. +// We need to decide if we want to change the db column type or if we want to delete it. // Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $list, CACHE_FIVE_MINUTES); return $list; }