diff --git a/features/safe-mode.xml b/features/safe-mode.xml index f59a12e915..6735cc18a2 100644 --- a/features/safe-mode.xml +++ b/features/safe-mode.xml @@ -1,5 +1,5 @@ - + Safe Mode @@ -207,9 +207,9 @@ The special value . - indicates that the working directory of the script will be used as - base-directory. This is however little dangerous as the working directory - of the script can be easily changed by chdir. + indicates that the working directory of the script will be used as the + base-directory. This is, however, a little dangerous as the working directory + of the script can easily be changed with chdir. Under Windows, separate the directories with a semicolon. On all diff --git a/reference/misc/functions/eval.xml b/reference/misc/functions/eval.xml index b2ec2d5224..50aa326b17 100644 --- a/reference/misc/functions/eval.xml +++ b/reference/misc/functions/eval.xml @@ -1,5 +1,5 @@ - + @@ -36,7 +36,7 @@ the string immediately. As of PHP 4, eval returns &null; unless return is called in the evaluated code, in which case the value passed to return is - returned. In case of fatal error in evaluated code, + returned. In case of a fatal error in the evaluated code, eval returns &false;. In PHP 3, eval does not return a value.