Fix curly brace when accessing character inside string
[phorkie.git] / src / phorkie / Repository.php
index 013f017f8111e742f5bce7a2e6d00687601e28b5..fab32a192a66e80407fa41cf515131ff80035168 100644 (file)
@@ -143,7 +143,7 @@ class Repository
 
     public function getVc()
     {
-        return new \VersionControl_Git($this->gitDir);
+        return new \VersionControl_Git($this->workDir);
     }
 
     /**
@@ -210,7 +210,7 @@ class Repository
             ->execute();
         $files = explode("\n", trim($output));
         foreach ($files as &$file) {
-            if ($file{0} == '"') {
+            if ($file[0] == '"') {
                 $file = $this->decodeFileName($file);
             }
         }