diff options
author | Stanislav Malyshev <stas@php.net> | 2007-08-03 01:40:05 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2007-08-03 01:40:05 +0000 |
commit | d4cc7daba23fc659801e6792834b2e701dba8438 (patch) | |
tree | 71023217aa84d1d67f0e49087265d22e57d6aaea /ext/session/session.c | |
parent | c54e9706fdac3064a859dddb47f3214c808ebe25 (diff) | |
download | php-git-d4cc7daba23fc659801e6792834b2e701dba8438.tar.gz |
MF5: fix for access control with .htaccess
Diffstat (limited to 'ext/session/session.c')
-rw-r--r-- | ext/session/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index 1e3b7af96e..dfa798e06b 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -542,7 +542,7 @@ static PHP_INI_MH(OnUpdateSerializer) static PHP_INI_MH(OnUpdateSaveDir) { /* Only do the safemode/open_basedir check at runtime */ - if (stage == PHP_INI_STAGE_RUNTIME) { + if (stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) { char *p; if (memchr(new_value, '\0', new_value_length) != NULL) { |