svn: /pear/peardoc/trunk/en/guide/users/installation/ checking.xml

[email protected] (Christian Weiske) Thu, 31 Mar 2011 14:16:49 +0000
Newsgroups php.pear.doc
Message-ID <[email protected]>
cweiske                                  Thu, 31 Mar 2011 14:16:49 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=309857

Log:
do not trigger autoloaders

Changed paths:
    U   pear/peardoc/trunk/en/guide/users/installation/checking.xml

Modified: pear/peardoc/trunk/en/guide/users/installation/checking.xml
===================================================================
--- pear/peardoc/trunk/en/guide/users/installation/checking.xml	2011-03-31 14:01:07 UTC (rev 309856)
+++ pear/peardoc/trunk/en/guide/users/installation/checking.xml	2011-03-31 14:16:49 UTC (rev 309857)
@@ -130,7 +130,7 @@
       <programlisting role="php"><![CDATA[
 <?php
 require_once 'System.php';
-var_dump(class_exists('System'));
+var_dump(class_exists('System', false));
 ?>
    ]]></programlisting>