From f1d727dafed21e7fb7027b7ac95d006d72339d23 Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 27 Jun 2008 15:01:50 +0000 Subject: Minor textual changes git-svn-id: https://code.elgg.org/elgg/trunk@1183 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/metastrings.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engine/lib/metastrings.php') diff --git a/engine/lib/metastrings.php b/engine/lib/metastrings.php index 3b0fba2e7..cf484b2d4 100644 --- a/engine/lib/metastrings.php +++ b/engine/lib/metastrings.php @@ -29,7 +29,7 @@ if ($result!==false) { if ($CONFIG->debug) - error_log("Returning id for string:$string from cache."); + error_log("** Returning id for string:$string from cache."); return $result; } @@ -39,7 +39,7 @@ $METASTRINGS_CACHE[$row->id] = $row->string; // Cache it if ($CONFIG->debug) - error_log("Cacheing {$row->string}"); + error_log("** Cacheing string '{$row->string}'"); return $row->id; } @@ -62,7 +62,7 @@ if (isset($METASTRINGS_CACHE[$id])) { if ($CONFIG->debug) - error_log("Returning string for id:$id from cache."); + error_log("** Returning string for id:$id from cache."); return $METASTRINGS_CACHE[$id]; } @@ -72,7 +72,7 @@ $METASTRINGS_CACHE[$id] = $row->string; // Cache it if ($CONFIG->debug) - error_log("Cacheing {$row->string}"); + error_log("** Cacheing string '{$row->string}'"); return $row->string; } -- cgit v1.2.3