> On Tue, Mar 4, 2008 at 3:30 PM, Philip Olson <[EMAIL PROTECTED]> wrote:
>  >  Hello Daniel-
>  >
>  >  Looks good, although the bug has grown since this post (blame me, see
>  >  comment within the report) so ideally the patch will grow too.

    Updated patch (fixes all double-backslash typos in IMAP function pages).

-- 
</Dan>

Daniel P. Brown
Senior Unix Geek
<? while(1) { $me = $mind--; sleep(86400); } ?>
Index: functions/imap-clearflag-full.xml
===================================================================
RCS  /repository/phpdoc/en/reference/imap/functions/imap-clearflag-full.xml,v
retrieving revision 1.10
diff -u -r1.10 imap-clearflag-full.xml
--- functions/imap-clearflag-full.xml   20 Jun 2007 22:24:46 -0000      1.10
+++ functions/imap-clearflag-full.xml   4 Mar 2008 20:44:29 -0000
@@ -39,8 +39,8 @@
      <term><parameter>flag</parameter></term>
      <listitem>
       <para>
-       The flags which you can unset are "\\Seen", "\\Answered", "\\Flagged",
-       "\\Deleted", and "\\Draft" (as defined by <link
+       The flags which you can unset are "\Seen", "\Answered", "\Flagged",
+       "\Deleted", and "\Draft" (as defined by <link
        xlink:href="&url.rfc;2060">RFC2060</link>)
       </para>
      </listitem>
Index: functions/imap-search.xml
===================================================================
RCS  /repository/phpdoc/en/reference/imap/functions/imap-search.xml,v
retrieving revision 1.11
diff -u -r1.11 imap-search.xml
--- functions/imap-search.xml   20 Jun 2007 22:24:47 -0000      1.11
+++ functions/imap-search.xml   4 Mar 2008 20:44:29 -0000
@@ -47,7 +47,7 @@
         </listitem>
         <listitem>
          <simpara>
-          ANSWERED - match messages with the \\ANSWERED flag set
+          ANSWERED - match messages with the \ANSWERED flag set
          </simpara>
         </listitem>
         <listitem>
@@ -77,7 +77,7 @@
         </listitem>
         <listitem>
          <simpara>
-          FLAGGED - match messages with the \\FLAGGED (sometimes
+          FLAGGED - match messages with the \FLAGGED (sometimes
           referred to as Important or Urgent) flag set
          </simpara>
         </listitem>
@@ -108,12 +108,12 @@
         </listitem>
         <listitem>
          <simpara>
-          RECENT - match messages with the \\RECENT flag set
+          RECENT - match messages with the \RECENT flag set
          </simpara>
         </listitem>
         <listitem>
          <simpara>
-          SEEN - match messages that have been read (the \\SEEN flag is set)
+          SEEN - match messages that have been read (the \SEEN flag is set)
          </simpara>
         </listitem>
         <listitem>
Index: functions/imap-setflag-full.xml
===================================================================
RCS  /repository/phpdoc/en/reference/imap/functions/imap-setflag-full.xml,v
retrieving revision 1.15
diff -u -r1.15 imap-setflag-full.xml
--- functions/imap-setflag-full.xml     20 Jun 2007 22:24:47 -0000      1.15
+++ functions/imap-setflag-full.xml     4 Mar 2008 20:44:29 -0000
@@ -39,9 +39,9 @@
      <term><parameter>flag</parameter></term>
      <listitem>
       <para>
-       The flags which you can set are <literal>\\Seen</literal>,
-       <literal>\\Answered</literal>, <literal>\\Flagged</literal>,
-       <literal>\\Deleted</literal>, and <literal>\\Draft</literal> as
+       The flags which you can set are <literal>\Seen</literal>,
+       <literal>\Answered</literal>, <literal>\Flagged</literal>,
+       <literal>\Deleted</literal>, and <literal>\Draft</literal> as
        defined by <link xlink:href="&url.rfc;2060">RFC2060</link>.
       </para>
      </listitem>
@@ -82,7 +82,7 @@
 $mbox = imap_open("{imap.example.org:143}", "username", "password")
      or die("can't connect: " . imap_last_error());

-$status = imap_setflag_full($mbox, "2,5", "\\Seen \\Flagged");
+$status = imap_setflag_full($mbox, "2,5", "\Seen \Flagged");

 echo gettype($status) . "\n";
 echo $status . "\n";

Reply via email to