torben Mon Jan 29 16:27:22 2001 EDT
Modified files:
/phpdoc/en/appendices migration4.xml
Log:
& => &
Index: phpdoc/en/appendices/migration4.xml
diff -u phpdoc/en/appendices/migration4.xml:1.3 phpdoc/en/appendices/migration4.xml:1.4
--- phpdoc/en/appendices/migration4.xml:1.3 Tue Jan 23 03:00:10 2001
+++ phpdoc/en/appendices/migration4.xml Mon Jan 29 16:27:22 2001
@@ -81,10 +81,10 @@
style warnings that are categorized by the symbolic constant
<literal>E_NOTICE</literal>. Then you'll put the following into
your <filename>php.ini</filename>: <literal>error_reporting =
- E_ALL & ~ ( E_NOTICE )</literal>. If you want to suppress
+ E_ALL & ~ ( E_NOTICE )</literal>. If you want to suppress
warnings too you add up the appropriate constant within the
braces using the binary or operator '|':
- <literal>error_reporting= E_ALL & ~ ( E_NOTICE | E_WARNING
+ <literal>error_reporting= E_ALL & ~ ( E_NOTICE | E_WARNING
)</literal>.
</para>
<warning>