diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-08-29 09:20:33 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-08-29 09:20:33 +0200 |
commit | 05da1577aaa51cef329849c495469903333c59f2 (patch) | |
tree | 09566e66bbb66f2050cc34cf804e9037fa28b4f7 /program/lib/Roundcube/rcube_storage.php | |
parent | b5c413a4cf6661c9d0363eb97748144d6fab2a06 (diff) |
Fix setting of Junk and NonJunk flags by markasjunk plugin (#1489285)
Added possibility to register flag mappings by a plugin.
Diffstat (limited to 'program/lib/Roundcube/rcube_storage.php')
-rw-r--r-- | program/lib/Roundcube/rcube_storage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_storage.php b/program/lib/Roundcube/rcube_storage.php index de8334551..e697b2c73 100644 --- a/program/lib/Roundcube/rcube_storage.php +++ b/program/lib/Roundcube/rcube_storage.php @@ -39,7 +39,7 @@ abstract class rcube_storage protected $default_charset = 'ISO-8859-1'; protected $default_folders = array('INBOX'); protected $search_set; - protected $options = array('auth_method' => 'check'); + protected $options = array('auth_type' => 'check'); protected $page_size = 10; protected $threading = false; |