vrana Mon Aug 14 13:12:56 2006 UTC
Modified files:
/phpdoc/en/reference/zip/functions zip-entry-close.xml zip-open.xml
zip-read.xml
ziparchive-deleteindex.xml
ziparchive-getcommentindex.xml
ziparchive-getcommentname.xml
ziparchive-getfromindex.xml
ziparchive-getfromname.xml
ziparchive-getnameindex.xml
ziparchive-locatename.xml
ziparchive-open.xml
ziparchive-renameindex.xml
ziparchive-setcommentindex.xml
ziparchive-statindex.xml
ziparchive-statname.xml
ziparchive-unchangeindex.xml
Log:
Fix synopsis types
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/zip-entry-close.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/zip/functions/zip-entry-close.xml
diff -u phpdoc/en/reference/zip/functions/zip-entry-close.xml:1.6
phpdoc/en/reference/zip/functions/zip-entry-close.xml:1.7
--- phpdoc/en/reference/zip/functions/zip-entry-close.xml:1.6 Mon Apr 11
08:27:32 2005
+++ phpdoc/en/reference/zip/functions/zip-entry-close.xml Mon Aug 14
13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/zip.xml, last change in rev 1.11 -->
<refentry id="function.zip-entry-close">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <type>void</type><methodname>zip_entry_close</methodname>
+ <type>bool</type><methodname>zip_entry_close</methodname>
<methodparam><type>resource</type><parameter>zip_entry</parameter></methodparam>
</methodsynopsis>
<para>
@@ -34,7 +34,7 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
- &return.void;
+ &return.success;
</para>
</refsect1>
<refsect1 role="seealso">
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/zip-open.xml?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/en/reference/zip/functions/zip-open.xml
diff -u phpdoc/en/reference/zip/functions/zip-open.xml:1.3
phpdoc/en/reference/zip/functions/zip-open.xml:1.4
--- phpdoc/en/reference/zip/functions/zip-open.xml:1.3 Thu Dec 30 23:08:25 2004
+++ phpdoc/en/reference/zip/functions/zip-open.xml Mon Aug 14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/zip.xml, last change in rev 1.11 -->
<refentry id="function.zip-open">
<refnamediv>
@@ -9,8 +9,9 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <type>resource</type><methodname>zip_open</methodname>
+ <type>mixed</type><methodname>zip_open</methodname>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>mode</parameter></methodparam>
</methodsynopsis>
<para>
Opens a new zip archive for reading.
@@ -28,6 +29,14 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><parameter>mode</parameter></term>
+ <listitem>
+ <para>
+ Bitmask of <link linkend="zip.constants">ZIP constants</link>.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
</refsect1>
@@ -36,8 +45,8 @@
<para>
Returns a resource handle for later use with
<function>zip_read</function> and <function>zip_close</function>
- or returns &false; if <parameter>filename</parameter> does not
- exist.
+ or returns the number of error if <parameter>filename</parameter> does not
+ exist or in case of other error.
</para>
</refsect1>
<refsect1 role="seealso">
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/zip-read.xml?r1=1.5&r2=1.6&diff_format=u
Index: phpdoc/en/reference/zip/functions/zip-read.xml
diff -u phpdoc/en/reference/zip/functions/zip-read.xml:1.5
phpdoc/en/reference/zip/functions/zip-read.xml:1.6
--- phpdoc/en/reference/zip/functions/zip-read.xml:1.5 Thu Dec 30 23:08:25 2004
+++ phpdoc/en/reference/zip/functions/zip-read.xml Mon Aug 14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/zip.xml, last change in rev 1.11 -->
<refentry id="function.zip-read">
<refnamediv>
@@ -9,8 +9,9 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <type>resource</type><methodname>zip_read</methodname>
+ <type>mixed</type><methodname>zip_read</methodname>
<methodparam><type>resource</type><parameter>zip</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Reads the next entry in a zip file archive.
@@ -28,6 +29,14 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><parameter>flags</parameter></term>
+ <listitem>
+ <para>
+ Bitmask of <link linkend="zip.constants">ZIP constants</link>.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
</refsect1>
@@ -36,7 +45,7 @@
<para>
Returns a directory entry resource for later use with the
<literal>zip_entry_...</literal> functions or &false; if
- there's no more entries to read.
+ there's no more entries to read or number of error in case of other error.
</para>
</refsect1>
<refsect1 role="seealso">
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-deleteindex.xml?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-deleteindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-deleteindex.xml:1.3
phpdoc/en/reference/zip/functions/ziparchive-deleteindex.xml:1.4
--- phpdoc/en/reference/zip/functions/ziparchive-deleteindex.xml:1.3 Sat Aug
12 15:54:51 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-deleteindex.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.ziparchive-deleteindex">
<refnamediv>
<refname>ZipArchive::deleteIndex</refname>
@@ -9,7 +9,7 @@
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>ZipArchive::deleteIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
</methodsynopsis>
<para>
Delete an entry in the archive using its index.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-getcommentindex.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-getcommentindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-getcommentindex.xml:1.2
phpdoc/en/reference/zip/functions/ziparchive-getcommentindex.xml:1.3
--- phpdoc/en/reference/zip/functions/ziparchive-getcommentindex.xml:1.2
Fri Aug 11 17:59:01 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-getcommentindex.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.ziparchive-getcommentindex">
<refnamediv>
<refname>ZipArchive::getCommentIndex</refname>
@@ -9,8 +9,8 @@
&reftitle.description;
<methodsynopsis>
<type>string</type><methodname>ZipArchive::getCommentIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Returns the comment of an entry using the entry index.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-getcommentname.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-getcommentname.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-getcommentname.xml:1.2
phpdoc/en/reference/zip/functions/ziparchive-getcommentname.xml:1.3
--- phpdoc/en/reference/zip/functions/ziparchive-getcommentname.xml:1.2 Fri Aug
11 17:59:01 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-getcommentname.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.ziparchive-getcommentname">
<refnamediv>
<refname>ZipArchive::getCommentName</refname>
@@ -10,7 +10,7 @@
<methodsynopsis>
<type>string</type><methodname>ZipArchive::getCommentName</methodname>
<methodparam><type>string</type><parameter>name</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Returns the comment of an entry using the entry name.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-getfromindex.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-getfromindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-getfromindex.xml:1.2
phpdoc/en/reference/zip/functions/ziparchive-getfromindex.xml:1.3
--- phpdoc/en/reference/zip/functions/ziparchive-getfromindex.xml:1.2 Sat Aug
12 15:54:51 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-getfromindex.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.ziparchive-getfromindex">
<refnamediv>
<refname>ZipArchive::getFromIndex</refname>
@@ -9,8 +9,8 @@
&reftitle.description;
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::getFromIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Returns the entry contents using its index.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-getfromname.xml?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-getfromname.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-getfromname.xml:1.3
phpdoc/en/reference/zip/functions/ziparchive-getfromname.xml:1.4
--- phpdoc/en/reference/zip/functions/ziparchive-getfromname.xml:1.3 Sat Aug
12 20:50:14 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-getfromname.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.ziparchive-getfromname">
<refnamediv>
<refname>ZipArchive::getFromName</refname>
@@ -10,7 +10,7 @@
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::getFromName</methodname>
<methodparam><type>string</type><parameter>name</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Returns the entry contents using its name.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-getnameindex.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-getnameindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-getnameindex.xml:1.2
phpdoc/en/reference/zip/functions/ziparchive-getnameindex.xml:1.3
--- phpdoc/en/reference/zip/functions/ziparchive-getnameindex.xml:1.2 Fri Aug
11 17:59:01 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-getnameindex.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.ziparchive-getnameindex">
<refnamediv>
<refname>ZipArchive::getNameIndex</refname>
@@ -9,7 +9,7 @@
&reftitle.description;
<methodsynopsis>
<type>string</type><methodname>ZipArchive::getNameIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
</methodsynopsis>
<para>
Returns the name of an entry using its index.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-locatename.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-locatename.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-locatename.xml:1.2
phpdoc/en/reference/zip/functions/ziparchive-locatename.xml:1.3
--- phpdoc/en/reference/zip/functions/ziparchive-locatename.xml:1.2 Sat Aug
12 21:10:18 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-locatename.xml Mon Aug 14
13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.ziparchive-locatename">
<refnamediv>
<refname>ZipArchive::locateName</refname>
@@ -10,7 +10,7 @@
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::locateName</methodname>
<methodparam><type>string</type><parameter>name</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Locates an entry using its name.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-open.xml?r1=1.1&r2=1.2&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-open.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-open.xml:1.1
phpdoc/en/reference/zip/functions/ziparchive-open.xml:1.2
--- phpdoc/en/reference/zip/functions/ziparchive-open.xml:1.1 Fri Aug 11
17:27:59 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-open.xml Mon Aug 14
13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.ziparchive-open">
<refnamediv>
<refname>ZipArchive::open</refname>
@@ -10,7 +10,7 @@
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::open</methodname>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
Opens a new zip archive for reading, writing or modifying.
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-renameindex.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-renameindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-renameindex.xml:1.2
phpdoc/en/reference/zip/functions/ziparchive-renameindex.xml:1.3
--- phpdoc/en/reference/zip/functions/ziparchive-renameindex.xml:1.2 Fri Aug
11 17:59:01 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-renameindex.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.ziparchive-renameindex">
<refnamediv>
<refname>ZipArchive::renameIndex</refname>
@@ -9,7 +9,7 @@
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>ZipArchive::renameIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
<methodparam><type>string</type><parameter>newname</parameter></methodparam>
</methodsynopsis>
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-setcommentindex.xml?r1=1.1&r2=1.2&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-setcommentindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-setcommentindex.xml:1.1
phpdoc/en/reference/zip/functions/ziparchive-setcommentindex.xml:1.2
--- phpdoc/en/reference/zip/functions/ziparchive-setcommentindex.xml:1.1
Fri Aug 11 17:27:59 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-setcommentindex.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.ziparchive-setcommentindex">
<refnamediv>
<refname>ZipArchive::setCommentIndex</refname>
@@ -9,7 +9,7 @@
&reftitle.description;
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::setCommentIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
<methodparam><type>string</type><parameter>comment</parameter></methodparam>
</methodsynopsis>
<para>
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-statindex.xml?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-statindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-statindex.xml:1.3
phpdoc/en/reference/zip/functions/ziparchive-statindex.xml:1.4
--- phpdoc/en/reference/zip/functions/ziparchive-statindex.xml:1.3 Sat Aug
12 22:23:43 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-statindex.xml Mon Aug 14
13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.ziparchive-statindex">
<refnamediv>
<refname>ZipArchive::statIndex</refname>
@@ -9,8 +9,8 @@
&reftitle.description;
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::statIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
The function obtains information about the entry defined by its
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-statname.xml?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-statname.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-statname.xml:1.3
phpdoc/en/reference/zip/functions/ziparchive-statname.xml:1.4
--- phpdoc/en/reference/zip/functions/ziparchive-statname.xml:1.3 Sat Aug
12 22:22:40 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-statname.xml Mon Aug 14
13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.ziparchive-statname">
<refnamediv>
<refname>ZipArchive::statName</refname>
@@ -10,7 +10,7 @@
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::statName</methodname>
<methodparam><type>name</type><parameter>name</parameter></methodparam>
- <methodparam
choice="opt"><type>integer</type><parameter>flags</parameter></methodparam>
+ <methodparam
choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
</methodsynopsis>
<para>
The function obtains information about the entry defined by its
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/zip/functions/ziparchive-unchangeindex.xml?r1=1.1&r2=1.2&diff_format=u
Index: phpdoc/en/reference/zip/functions/ziparchive-unchangeindex.xml
diff -u phpdoc/en/reference/zip/functions/ziparchive-unchangeindex.xml:1.1
phpdoc/en/reference/zip/functions/ziparchive-unchangeindex.xml:1.2
--- phpdoc/en/reference/zip/functions/ziparchive-unchangeindex.xml:1.1 Fri Aug
11 17:27:59 2006
+++ phpdoc/en/reference/zip/functions/ziparchive-unchangeindex.xml Mon Aug
14 13:12:56 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.ziparchive-unchangeindex">
<refnamediv>
<refname>ZipArchive::unchangeIndex</refname>
@@ -9,7 +9,7 @@
&reftitle.description;
<methodsynopsis>
<type>mixed</type><methodname>ZipArchive::unchangeIndex</methodname>
- <methodparam><type>integer</type><parameter>index</parameter></methodparam>
+ <methodparam><type>int</type><parameter>index</parameter></methodparam>
</methodsynopsis>
<para>
Revert all changes done to an entry at the given index.