Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
php5
:
EL6
>
php-pear
> php-pear-1.9.4-subdir.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File php-pear-1.9.4-subdir.patch of Package php-pear
--- Archive_Tar-1.3.7/Archive/Tar.php.old 2015-11-30 16:06:28.518605533 +0100 +++ Archive_Tar-1.3.7/Archive/Tar.php 2015-11-30 16:07:09.132949124 +0100 @@ -1881,7 +1881,10 @@ } } } - $v_result = strtr($v_result, '\\', '/'); + if (defined('OS_WINDOWS') && OS_WINDOWS) { + $v_result = strtr($v_result, '\\', '/'); + } + return $v_result; }