goba Fri Jan 3 16:35:35 2003 EDT
Modified files:
/phpdoc/en/reference/filesystem/functions chmod.xml
Log:
Modify wording in example (my => owner) to make it more "official"
Index: phpdoc/en/reference/filesystem/functions/chmod.xml
diff -u phpdoc/en/reference/filesystem/functions/chmod.xml:1.4
phpdoc/en/reference/filesystem/functions/chmod.xml:1.5
--- phpdoc/en/reference/filesystem/functions/chmod.xml:1.4 Fri Jan 3 16:32:04
2003
+++ phpdoc/en/reference/filesystem/functions/chmod.xml Fri Jan 3 16:35:33 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.chmod">
<refnamediv>
@@ -46,16 +46,16 @@
<informalexample>
<programlisting role="php">
<![CDATA[
-// Read and write for myself, nothing for everybody else
+// Read and write for owner, nothing for everybody else
chmod ("/somedir/somefile", 0600);
-// Read and write for myself, read for everybody else
+// Read and write for owner, read for everybody else
chmod ("/somedir/somefile", 0644);
-// Everything for myself, read and execute for others
+// Everything for owner, read and execute for others
chmod ("/somedir/somefile", 0755);
-// Everything for myself, read and execute for my group
+// Everything for owner, read and execute for owner's group
chmod ("/somedir/somefile", 0750);
]]>
</programlisting>
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php