Made hide parameter to sqimap_mailbox_select optional, since few
authorgustavf <gustavf@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 10 Jul 2000 09:37:50 +0000 (09:37 +0000)
committergustavf <gustavf@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 10 Jul 2000 09:37:50 +0000 (09:37 +0000)
function calls used it for something.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@606 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/imap_mailbox.php

index 0f5943d2d1d3dce921296faf5e459a928f41481a..1ac79cffa1b122ff556ef3594af16c0cb8276303 100755 (executable)
@@ -35,7 +35,7 @@
    /******************************************************************************
     **  Selects a mailbox
     ******************************************************************************/
-   function sqimap_mailbox_select ($imap_stream, $mailbox, $hide) {
+   function sqimap_mailbox_select ($imap_stream, $mailbox, $hide=true) {
       fputs ($imap_stream, "a001 SELECT \"$mailbox\"\r\n");
        $read = sqimap_read_data($imap_stream, "a001", true, $response, $message);
    }