ID: 14130
Updated by: philip
Reported By: [EMAIL PROTECTED]
Old Status: Assigned
Status: Closed
Bug Type: Documentation problem
Operating System: linux
PHP Version: 4.0CVS-2001-11-19
Assigned To: hholzgra
New Comment:
hholzgra CDATA conversions are complete. I labeled a few finishing touches as "Fix
typos" when they weren't really true typos. Sorry. But, everything should be good
now :)
Previous Comments:
------------------------------------------------------------------------
[2001-11-20 04:13:51] [EMAIL PROTECTED]
all examples in en/functions/ up to mbstring.xml
have already been converted, the rest will follow
soon
------------------------------------------------------------------------
[2001-11-19 22:01:24] [EMAIL PROTECTED]
Not all examples have a CDATA section.
------------------------------------------------------------------------
[2001-11-19 20:53:01] [EMAIL PROTECTED]
patch below
regards
alan
Index: zlib.xml
===================================================================
RCS file: /repository/phpdoc/en/functions/zlib.xml,v
retrieving revision 1.19
diff -u -r1.19 zlib.xml
--- zlib.xml 10 Nov 2001 21:49:42 -0000 1.19
+++ zlib.xml 20 Nov 2001 01:51:21 -0000
@@ -40,11 +40,11 @@
</para>
<example>
<title>Small Zlib Example</title>
-<programlisting role="php">
-<?php
+<programlisting role="php"><![CDATA[
+<?php
$filename = tempnam ('/tmp', 'zlibtest').'.gz';
-print "<html>\n<head></head>\n<body>\n<pre>\n";
+print "<html>\n<head></head>\n<body>\n<pre>\n";
$s = "Only a test, test, test, test, test, test, test, test!\n";
// open file for writing with maximum compression
@@ -72,10 +72,10 @@
echo "Error with zlib functions!";
}
unlink($filename);
-print "</pre>\n</h1></body>\n</html>\n";
+print "</pre>\n</h1></body>\n</html>\n";
?>
- </programlisting>
+ ]]></programlisting>
</example>
</sect1>
</partintro>
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=14130&edit=1