[imp] folder subscriptions

Aaron Solochek aarons@aberrant.org
Sat, 29 Dec 2001 16:16:56 -0500


I changed

  if ($subscribed) {
             $listcmd = 'imap_listsubscribed';
         } else {
             $listcmd = 'imap_listmailbox';
         }


to

  if ($subscribed) {
             $listcmd = 'imap_listsubscribed';
             echo("subscribed\n");
         } else {
             $listcmd = 'imap_listmailbox';
             echo("not subscribed\n");
         }

And I cleared all my cache, so I'm pretty sure its actually still 
generating that error.

-Aaron


Chuck Hagenbuch wrote:

> Quoting Aaron Solochek <aarons@aberrant.org>:
> 
> 
>>I added a lines to echo within the if statement checking that variable, 
>>but then I got:
>>
>>Fatal error: Undefined class name 'imp_folder' in 
>>/usr/share/horde/imp/lib/IMP.php on line 509
>>
>>and even replacing IMP.php and Folders.php with the original versions 
>>isn't making that go away.
>>
> 
> It should... are you sure something isn't being cached? You probably created a 
> parse error - what was the code you added?
> 
> -chuck
> 
> --
> Charles Hagenbuch, <chuck@horde.org>
> "What was and what may be, lie, like children whose faces we cannot see, in the
> arms of silence. All we ever have is here, now." - Ursula K. Le Guin
> 
>