Index: language/control-structures/include.xml
===================================================================
--- language/control-structures/include.xml	(revision 287121)
+++ language/control-structures/include.xml	(working copy)
@@ -9,29 +9,15 @@
  </simpara>
  <simpara>
   The documentation below also applies to <function>require</function>.
-  The two constructs are identical in every way except how they handle
-  failure. They both produce a
-  <link linkend="errorfunc.constants.errorlevels.e-warning">Warning</link>, but <function>require</function>
-  results in a <link linkend="errorfunc.constants.errorlevels.e-error">Fatal Error</link>.
-  In other words, use <function>require</function> if you want
-  a missing file to halt processing of the page.  <function>include</function> does
-  not behave this way, the script will continue regardless.  Be sure to have an
-  appropriate <link linkend="ini.include-path">include_path</link> setting as well.
-  Be warned that parse error in included file doesn't cause processing halting
-  in PHP versions prior to PHP 4.3.5. Since this version, it does.
  </simpara>
  <simpara>
-  Files for including are first looked for in each include_path entry
-  relative to the current working directory, and then in the directory of
-  current script.
-  E.g. if your include_path
-  is <literal>libraries</literal>, current working directory is <filename class="directory">/www/</filename>,
-  you included <filename>include/a.php</filename> and there is <literal>include "b.php"</literal>
-  in that file, <filename>b.php</filename> is first looked in <filename class="directory">/www/libraries/</filename>
-  and then in <filename class="directory">/www/include/</filename>.
-  If filename begins with <literal>./</literal> or <literal>../</literal>, it
-  is looked for only in the current working directory or parent of the
-  current working directory, respectively.
+  Files are included based on the file path given or, if none is given, the 
+  <link linkend="ini.include-path">include_path</link> specified. The 
+  <function>include</function> construct will emit a 
+  <link linkend="errorfunc.constants.errorlevels.e-warning">warning</link> if it
+  cannot find a file; this is different behavior from <function>require</a>, 
+  which will emit a 
+  <link linkend="errorfunc.constants.errorlevels.e-error">fatal error</link>.
  </simpara>
  <simpara>
   When a file is included, the code it contains inherits the
