didou Wed Jul 21 17:16:23 2004 EDT
Modified files:
/phpdoc/en/reference/filesystem/functions fileperms.xml
/phpdoc/en/reference/info/functions get-magic-quotes-gpc.xml
/phpdoc/en/reference/mysql/functions mysql-fetch-object.xml
Log:
missing closing tags and commnted invalid code
http://cvs.php.net/diff.php/phpdoc/en/reference/filesystem/functions/fileperms.xml?r1=1.8&r2=1.9&ty=u
Index: phpdoc/en/reference/filesystem/functions/fileperms.xml
diff -u phpdoc/en/reference/filesystem/functions/fileperms.xml:1.8
phpdoc/en/reference/filesystem/functions/fileperms.xml:1.9
--- phpdoc/en/reference/filesystem/functions/fileperms.xml:1.8 Wed Jul 14 06:58:42
2004
+++ phpdoc/en/reference/filesystem/functions/fileperms.xml Wed Jul 21 17:16:22
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.fileperms">
<refnamediv>
@@ -24,6 +24,7 @@
<?php
echo substr(sprintf('%o', fileperms('/tmp')), -4);
echo substr(sprintf('%o', fileperms('/etc/passwd')), -4);
+?>
]]>
</programlisting>
<para>This would produce the output:</para>
@@ -125,4 +126,4 @@
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
--->
\ No newline at end of file
+-->
http://cvs.php.net/diff.php/phpdoc/en/reference/info/functions/get-magic-quotes-gpc.xml?r1=1.10&r2=1.11&ty=u
Index: phpdoc/en/reference/info/functions/get-magic-quotes-gpc.xml
diff -u phpdoc/en/reference/info/functions/get-magic-quotes-gpc.xml:1.10
phpdoc/en/reference/info/functions/get-magic-quotes-gpc.xml:1.11
--- phpdoc/en/reference/info/functions/get-magic-quotes-gpc.xml:1.10 Tue Jul 6
18:42:47 2004
+++ phpdoc/en/reference/info/functions/get-magic-quotes-gpc.xml Wed Jul 21 17:16:22
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.10 $ -->
+<!-- $Revision: 1.11 $ -->
<!-- splitted from ./en/functions/info.xml, last change in rev 1.2 -->
<refentry id="function.get-magic-quotes-gpc">
<refnamediv>
@@ -83,6 +83,7 @@
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
}
+?>
]]>
</programlisting>
</example>
http://cvs.php.net/diff.php/phpdoc/en/reference/mysql/functions/mysql-fetch-object.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/mysql/functions/mysql-fetch-object.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-fetch-object.xml:1.6
phpdoc/en/reference/mysql/functions/mysql-fetch-object.xml:1.7
--- phpdoc/en/reference/mysql/functions/mysql-fetch-object.xml:1.6 Wed Jul 9
11:07:29 2003
+++ phpdoc/en/reference/mysql/functions/mysql-fetch-object.xml Wed Jul 21 17:16:23
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.2 -->
<refentry id="function.mysql-fetch-object">
<refnamediv>
@@ -32,7 +32,7 @@
/* this is valid */
echo $row->field;
/* this is invalid */
-echo $row->0;
+// echo $row->0;
?>
]]>