Skip to content

Commit

Permalink
Close bug php#7325. Patches by [email protected].
Browse files Browse the repository at this point in the history
  • Loading branch information
Joey Smith committed Oct 19, 2000
1 parent 57dcb93 commit a57ea79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apidoc-zend.txt
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ registers two INI entries - "foo" and "bar". They're given defaults "1"
and "bah" respectively - note that all defaults are always given as
strings. That doesn't reduce your ability to use integer values, simply
specify them as strings. "foo" is marked so that it can be changed by
anyone at any time (PHP_INI_ALL), whereas "foo" is marked so it can be
anyone at any time (PHP_INI_ALL), whereas "bar" is marked so it can be
changed only at startup in the php3.ini only, presumably, by the system
administrator (PHP_INI_SYSTEM).
When "foo" changes, no function is called. Access to it is done using the
Expand Down
2 changes: 1 addition & 1 deletion main/fopen_wrappers.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ PHPAPI int php_check_open_basedir(char *path)

ptr = end;
}
php_error(E_WARNING, "open_basedir restriction in effect. File is in wrong directory.");
php_error(E_WARNING, "open_basedir restriction in effect. File is in wrong directory");
efree(pathbuf);
errno = EPERM; /* we deny permission to open it */
return -1;
Expand Down

0 comments on commit a57ea79

Please sign in to comment.