aboutsummaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/Service/Bookmark2Tag.php
diff options
context:
space:
mode:
authorMark Pemberton <mpemberton5@gmail.com>2011-05-17 00:24:43 -0400
committerMark Pemberton <mpemberton5@gmail.com>2011-05-17 00:24:43 -0400
commit920f7fc623ecad4f1338ab68326f2817c12c4610 (patch)
treed324bac21998f16d80eb7ff511561c415ba5b4e1 /src/SemanticScuttle/Service/Bookmark2Tag.php
parent10214c43b51e99cc3f8f58a4c4e8893eb2480e62 (diff)
downloadsemanticscuttle-920f7fc623ecad4f1338ab68326f2817c12c4610.tar.gz
semanticscuttle-920f7fc623ecad4f1338ab68326f2817c12c4610.tar.bz2
Updated PrivateKey to include Tag searches
Diffstat (limited to 'src/SemanticScuttle/Service/Bookmark2Tag.php')
-rw-r--r--src/SemanticScuttle/Service/Bookmark2Tag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SemanticScuttle/Service/Bookmark2Tag.php b/src/SemanticScuttle/Service/Bookmark2Tag.php
index a10cb61..fc59a1c 100644
--- a/src/SemanticScuttle/Service/Bookmark2Tag.php
+++ b/src/SemanticScuttle/Service/Bookmark2Tag.php
@@ -99,7 +99,7 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
$tags_count = is_array($tags)?count($tags):0;
for ($i = 0; $i < $tags_count; $i++) {
- $tags[$i] = trim(strtolower($tags[$i]));
+ $tags[$i] = trim(utf8_strtolower($tags[$i]));
if ($fromApi) {
include_once 'SemanticScuttle/functions.php';
$tags[$i] = convertTag($tags[$i], 'in');