From 75b9bc265014f538811dbea98ce391e578aa048b Mon Sep 17 00:00:00 2001 From: Shish Date: Tue, 31 Jan 2012 14:46:19 +0000 Subject: [PATCH] typo in merged code --- ext/alias_editor/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/alias_editor/main.php b/ext/alias_editor/main.php index 8986ac0b..6ef31bee 100755 --- a/ext/alias_editor/main.php +++ b/ext/alias_editor/main.php @@ -134,7 +134,7 @@ class AliasEditor extends SimpleExtension { foreach(explode("\n", $csv) as $line) { $parts = explode(",", $line); if(count($parts) == 2) { - $database->execute("INSERT INTO aliases(oldtag, newtag) VALUES(:oldtag, :newtag)", array("oldtag" => $parts[0], "newtag" => $parts[1]); + $database->execute("INSERT INTO aliases(oldtag, newtag) VALUES(:oldtag, :newtag)", array("oldtag" => $parts[0], "newtag" => $parts[1])); } } }