Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
php5
>
php-5.3.5
> php-5.3.0-open_basedir-borked.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File php-5.3.0-open_basedir-borked.patch of Package php-5.3.5 (Revision 1)
Currently displaying revision
1
,
show latest
Index: main/fopen_wrappers.c =================================================================== --- main/fopen_wrappers.c (revisiĆ³n: 286601) +++ main/fopen_wrappers.c (revisiĆ³n: 286602) @@ -93,7 +93,7 @@ p = (char **) (base + (size_t) mh_arg1); - if (stage == PHP_INI_STAGE_STARTUP || stage == PHP_INI_STAGE_SHUTDOWN) { + if (stage == PHP_INI_STAGE_STARTUP || stage == PHP_INI_STAGE_SHUTDOWN || stage == PHP_INI_STAGE_ACTIVATE || stage == PHP_INI_STAGE_DEACTIVATE) { /* We're in a PHP_INI_SYSTEM context, no restrictions */ *p = new_value; return SUCCESS;