do not overwrite variable
authorChristian Weiske <cweiske@cweiske.de>
Fri, 13 Apr 2012 18:25:52 +0000 (20:25 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Fri, 13 Apr 2012 18:25:52 +0000 (20:25 +0200)
src/phorkie/Tool/Xmllint.php

index b9917f59e891137ee4063008228f02315b983102..a724e6cb69762cc5014d187e816a5d196eaaad2f 100644 (file)
@@ -27,8 +27,8 @@ class Tool_Xmllint
             if (substr($line, 0, $fpathlen) != $fpath) {
                 throw new Exception('xmllint does not behave as expected: ' . $line);
             }
             if (substr($line, 0, $fpathlen) != $fpath) {
                 throw new Exception('xmllint does not behave as expected: ' . $line);
             }
-            list($line, $msg) = explode(':', substr($line, $fpathlen + 1), 2);
-            $res->annotations[$line][] = new Tool_Result_Line(
+            list($linenum, $msg) = explode(':', substr($line, $fpathlen + 1), 2);
+            $res->annotations[$linenum][] = new Tool_Result_Line(
                 $msg, 'error'
             );
         }
                 $msg, 'error'
             );
         }
@@ -41,4 +41,4 @@ class Tool_Xmllint
     }
 }
 
     }
 }
 
-?>
\ No newline at end of file
+?>