Skip to content

Commit

Permalink
[bug-OpenMage#436] Undefined var $k in Mage_Core_Model_Url_Rewrite::r…
Browse files Browse the repository at this point in the history
…emoveTag()
  • Loading branch information
edannenberg committed Mar 20, 2018
1 parent 7e993b6 commit 04215f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Core/Model/Url/Rewrite.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public function removeTag($tags)

$removeTags = is_array($tags) ? $tags : explode(',', $tags);

foreach ($removeTags as $t) {
foreach ($removeTags as $k=>$t) {
if (!is_numeric($k)) {
$t = $k.'='.$t;
}
Expand Down

0 comments on commit 04215f7

Please sign in to comment.