From 72269aa1d6790b5e9d0643fa348b9c1df6a8cfc7 Mon Sep 17 00:00:00 2001 From: Ricardo Soares de Lima Date: Sat, 8 Dec 2012 17:23:10 -0200 Subject: Using a foreach loop avoids Notice warnings when the array doesn't have sequential indexes, ex: 0, 1, 3... --- src/SemanticScuttle/Service/Bookmark2Tag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SemanticScuttle/Service/Bookmark2Tag.php') diff --git a/src/SemanticScuttle/Service/Bookmark2Tag.php b/src/SemanticScuttle/Service/Bookmark2Tag.php index 6505a5a..6e8e28c 100644 --- a/src/SemanticScuttle/Service/Bookmark2Tag.php +++ b/src/SemanticScuttle/Service/Bookmark2Tag.php @@ -98,7 +98,7 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService $tags_count = is_array($tags)?count($tags):0; - for ($i = 0; $i < $tags_count; $i++) { + foreach($tags as $i => $tag) { $tags[$i] = trim(utf8_strtolower($tags[$i])); if ($fromApi) { include_once 'SemanticScuttle/functions.php'; -- cgit v1.2.3