From 69643a62e1fa88f4e220e464a61b2003b4f50114 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 5 Nov 2014 11:22:39 +0100 Subject: [PATCH 1/1] work around PHP bug #68347: parse ini files in raw mode --- src/phorkie/Repository/ConnectionInfo.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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() -- 2.30.2