summaryrefslogtreecommitdiffstatshomepage
path: root/src/SemanticScuttle/Service/Tag.php
diff options
context:
space:
mode:
authorGravatar Ricardo Soares de Lima2012-12-08 17:23:10 -0200
committerGravatar Christian Weiske2013-03-21 06:39:23 +0100
commit72269aa1d6790b5e9d0643fa348b9c1df6a8cfc7 (patch)
tree9e62346a0d946cea4562203cf428fa1bcb33e029 /src/SemanticScuttle/Service/Tag.php
parentc4ba9ef2d295f85897557ce1f841a8bb368ed5ee (diff)
downloadscuttle-72269aa1d6790b5e9d0643fa348b9c1df6a8cfc7.tar.gz
scuttle-72269aa1d6790b5e9d0643fa348b9c1df6a8cfc7.zip
Using a foreach loop avoids Notice warnings when the array doesn't have sequential indexes, ex: 0, 1, 3...
Diffstat (limited to 'src/SemanticScuttle/Service/Tag.php')
-rw-r--r--src/SemanticScuttle/Service/Tag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SemanticScuttle/Service/Tag.php b/src/SemanticScuttle/Service/Tag.php
index 39147b8..bd6bf70 100644
--- a/src/SemanticScuttle/Service/Tag.php
+++ b/src/SemanticScuttle/Service/Tag.php
@@ -144,7 +144,7 @@ class SemanticScuttle_Service_Tag extends SemanticScuttle_DbService
$tags = utf8_strtolower(trim($tags));
} else {
$tags = array_filter($tags);//remove empty values
- for($i=0; $i<count($tags); $i++) {
+ foreach($tags as $i => $tag) {
$tags[$i] = utf8_strtolower(trim($tags[$i]));
}
}