aidan           Sat Sep 11 09:34:02 2004 EDT

  Modified files:              
    /phpdoc/en/faq      misc.xml 
  Log:
  whitespace changes
  
http://cvs.php.net/diff.php/phpdoc/en/faq/misc.xml?r1=1.17&r2=1.18&ty=u
Index: phpdoc/en/faq/misc.xml
diff -u phpdoc/en/faq/misc.xml:1.17 phpdoc/en/faq/misc.xml:1.18
--- phpdoc/en/faq/misc.xml:1.17 Sat Sep 11 06:49:25 2004
+++ phpdoc/en/faq/misc.xml      Sat Sep 11 09:34:02 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.17 $ -->
+<!-- $Revision: 1.18 $ -->
  <chapter id="faq.misc">
   <title>Miscellaneous Questions</title>
   <titleabbrev>Miscellaneous Questions</titleabbrev>
@@ -112,13 +112,13 @@
       configuration, but if it is not possible, then you can use these
       compatibility snippets.
      </para>
-<para>
- <example>
-  <title>Emulating Register Globals</title>
-  <para>
-   This will emulate register_globals On.
-  </para>
-  <programlisting role="php">
+     <para>
+      <example>
+       <title>Emulating Register Globals</title>
+        <para>
+        This will emulate register_globals On.
+       </para>
+       <programlisting role="php">
 <![CDATA[
 // Emulate register_globals on
 if (!ini_get('register_globals')) {
@@ -133,11 +133,11 @@
     ini_set('register_globals', true);
 }
 ]]>
-  </programlisting>
-  <para>
-   This will emulate register_globals Off.
-  </para>
-  <programlisting role="php">
+       </programlisting>
+       <para>
+        This will emulate register_globals Off.
+       </para>
+       <programlisting role="php">
 <![CDATA[
 // Emulate register_globals off
 if (ini_get('register_globals')) {
@@ -154,9 +154,9 @@
     ini_set('register_globals', false);
 }
 ]]>
-  </programlisting>
- </example>
-</para>
+       </programlisting>
+      </example>
+     </para>
     </answer>
    </qandaentry>
   </qandaset>

Reply via email to