aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/phorkie/Repository/ConnectionInfo.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/phorkie/Repository/ConnectionInfo.php b/src/phorkie/Repository/ConnectionInfo.php
index ce96c3e..501f7d0 100644
--- a/src/phorkie/Repository/ConnectionInfo.php
+++ b/src/phorkie/Repository/ConnectionInfo.php
@@ -10,7 +10,10 @@ class Repository_ConnectionInfo
public function __construct(Repository $repo)
{
$this->repo = $repo;
- $this->arConfig = parse_ini_file($this->repo->gitDir . '/config', true);
+ //we need raw parsing; https://bugs.php.net/bug.php?id=68347
+ $this->arConfig = parse_ini_file(
+ $this->repo->gitDir . '/config', true, INI_SCANNER_RAW
+ );
}
public function isFork()