From 3afc76a4b5ad2f73dd69a82ec08c0d0e4799f00f Mon Sep 17 00:00:00 2001 From: tonythomas01 <01tonythomas@gmail.com> Date: Thu, 6 Feb 2014 17:48:55 +0530 Subject: [PATCH] Used DIRECTORY_SEPARATOR instead of '/' in GitInfo.php Bug: 46482 Change-Id: If473bf60971b4c1a8c6a657d4cd7dd5a0bad659f --- includes/GitInfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/GitInfo.php b/includes/GitInfo.php index e0bd5cd043..1f465c7551 100644 --- a/includes/GitInfo.php +++ b/includes/GitInfo.php @@ -44,13 +44,13 @@ class GitInfo { * @param string $dir The root directory of the repo where the .git dir can be found */ public function __construct( $dir ) { - $this->basedir = "{$dir}/.git"; + $this->basedir = $dir . DIRECTORY_SEPARATOR . '.git'; if ( is_readable( $this->basedir ) && !is_dir( $this->basedir ) ) { $GITfile = file_get_contents( $this->basedir ); if ( strlen( $GITfile ) > 8 && substr( $GITfile, 0, 8 ) === 'gitdir: ' ) { $path = rtrim( substr( $GITfile, 8 ), "\r\n" ); $isAbsolute = $path[0] === '/' || substr( $path, 1, 1 ) === ':'; - $this->basedir = $isAbsolute ? $path : "{$dir}/{$path}"; + $this->basedir = $isAbsolute ? $path : $dir . DIRECTORY_SEPARATOR . $path; } } } -- 2.20.1