didou Tue Jan 6 04:20:33 2004 EDT
Modified files:
/phpdoc/en/appendices migration.xml
Log:
more CS
Index: phpdoc/en/appendices/migration.xml
diff -u phpdoc/en/appendices/migration.xml:1.24 phpdoc/en/appendices/migration.xml:1.25
--- phpdoc/en/appendices/migration.xml:1.24 Sun Aug 17 05:43:19 2003
+++ phpdoc/en/appendices/migration.xml Tue Jan 6 04:20:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.24 $ -->
+<!-- $Revision: 1.25 $ -->
<appendix id="migration">
<title>Migrating from PHP/FI 2 to PHP 3</title>
@@ -292,7 +292,7 @@
<![CDATA[
$fp = fopen($file, "r");
if ($fp == -1);
- echo("Could not open $file for reading<br>\n");
+ echo("Could not open $file for reading<br />\n");
endif;
]]>
</programlisting>
@@ -301,7 +301,7 @@
<title>Migration from 2.0: return values, new code</title>
<programlisting role="php">
<![CDATA[
-$fp = @fopen($file, "r") or print("Could not open $file for reading<br>\n");
+$fp = @fopen($file, "r") or print("Could not open $file for reading<br />\n");
]]>
</programlisting>
</example>