aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/metastrings.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-27 15:01:50 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-27 15:01:50 +0000
commitf1d727dafed21e7fb7027b7ac95d006d72339d23 (patch)
tree70133bf1ea5eb74865dbc3c36cf29bc0f16273fe /engine/lib/metastrings.php
parente10b9e31e09a6f74132c53504120253a171bfeee (diff)
downloadelgg-f1d727dafed21e7fb7027b7ac95d006d72339d23.tar.gz
elgg-f1d727dafed21e7fb7027b7ac95d006d72339d23.tar.bz2
Minor textual changes
git-svn-id: https://code.elgg.org/elgg/trunk@1183 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/metastrings.php')
-rw-r--r--engine/lib/metastrings.php8
1 files changed, 4 insertions, 4 deletions
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;
}