summaryrefslogtreecommitdiffstatshomepage
path: root/src/SemanticScuttle/Service/Tag.php
diff options
context:
space:
mode:
authorGravatar Mark Pemberton2011-05-17 00:24:43 -0400
committerGravatar Mark Pemberton2011-05-17 00:24:43 -0400
commit920f7fc623ecad4f1338ab68326f2817c12c4610 (patch)
treed324bac21998f16d80eb7ff511561c415ba5b4e1 /src/SemanticScuttle/Service/Tag.php
parent10214c43b51e99cc3f8f58a4c4e8893eb2480e62 (diff)
downloadscuttle-920f7fc623ecad4f1338ab68326f2817c12c4610.tar.gz
scuttle-920f7fc623ecad4f1338ab68326f2817c12c4610.zip
Updated PrivateKey to include Tag searches
Diffstat (limited to 'src/SemanticScuttle/Service/Tag.php')
-rw-r--r--src/SemanticScuttle/Service/Tag.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SemanticScuttle/Service/Tag.php b/src/SemanticScuttle/Service/Tag.php
index 25d3888..8325285 100644
--- a/src/SemanticScuttle/Service/Tag.php
+++ b/src/SemanticScuttle/Service/Tag.php
@@ -141,10 +141,10 @@ class SemanticScuttle_Service_Tag extends SemanticScuttle_DbService
//normalize
if(!is_array($tags)) {
- $tags = strtolower(trim($tags));
+ $tags = utf8_strtolower(trim($tags));
} else {
for($i=0; $i<count($tags); $i++) {
- $tags[$i] = strtolower(trim($tags[$i]));
+ $tags[$i] = utf8_strtolower(trim($tags[$i]));
}
}
return $tags;