Date: 11/30/01
- Next message: Philip Olson: "[PHP-DOC] cvs: phpdoc /en/functions array.xml /en/language basic-syntax.xml"
- Previous message: philip <email protected>: "[PHP-DOC] Bug #14299 Updated: explode() case sensitivity."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
philip Fri Nov 30 17:09:13 2001 EDT
Modified files:
/phpdoc/en/language variables.xml
Log:
Fix CDATA typo
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.24 phpdoc/en/language/variables.xml:1.25
--- phpdoc/en/language/variables.xml:1.24 Fri Nov 23 16:51:23 2001
+++ phpdoc/en/language/variables.xml Fri Nov 30 17:09:13 2001
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.24 $ -->
+<!-- $Revision: 1.25 $ -->
<chapter id="language.variables">
<title>Variables</title>
@@ -78,6 +78,7 @@
echo $foo; // $foo is altered too.
echo $bar;
?>
+]]>
</programlisting>
</informalexample>
</para>
@@ -87,6 +88,7 @@
assigned by reference.
<informalexample>
<programlisting role="php">
+<![CDATA[
<?php
$foo = 25;
$bar = &$foo; // This is a valid assignment.
@@ -97,7 +99,7 @@
return 25;
}
-$bar = &test(); // Invalid.
+$bar = &test(); // Invalid.
?>
]]>
</programlisting>
- Next message: Philip Olson: "[PHP-DOC] cvs: phpdoc /en/functions array.xml /en/language basic-syntax.xml"
- Previous message: philip <email protected>: "[PHP-DOC] Bug #14299 Updated: explode() case sensitivity."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

