X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Foptions_folder.php;h=3ee491017ee85e37ce2f8a12c51bf9e3da96986f;hb=d7a4ccb4c5ae4fcd4d45ff84b5d0286982422357;hp=32ce25a9e8db60afa2d5260010314b344ce65b56;hpb=895905c0f766ea03e85deab260b4bb1522dd0e3c;p=squirrelmail.git diff --git a/src/options_folder.php b/src/options_folder.php index 32ce25a9..3ee49101 100644 --- a/src/options_folder.php +++ b/src/options_folder.php @@ -1,15 +1,15 @@ 'unseen_notify', - 'caption' => _("Enable Unseen Message Notification"), + 'caption' => _("Enable Unread Message Notification"), 'type' => SMOPT_TYPE_STRLIST, 'refresh' => SMOPT_REFRESH_FOLDERLIST, 'posvals' => array(SMPREF_UNSEEN_NONE => _("No Notification"), @@ -149,7 +149,7 @@ function load_optpage_data_folder() { $optvals[SMOPT_GRP_FOLDERLIST][] = array( 'name' => 'unseen_type', - 'caption' => _("Unseen Message Notification Type"), + 'caption' => _("Unread Message Notification Type"), 'type' => SMOPT_TYPE_STRLIST, 'refresh' => SMOPT_REFRESH_FOLDERLIST, 'posvals' => array(SMPREF_UNSEEN_ONLY => _("Only Unseen"), @@ -185,6 +185,23 @@ function load_optpage_data_folder() { SMPREF_TIME_24HR => _("24-hour clock")) ); + $optvals[SMOPT_GRP_FOLDERLIST][] = array( + 'name' => 'search_memory', + 'caption' => _("Memory Search"), + 'type' => SMOPT_TYPE_STRLIST, + 'refresh' => SMOPT_REFRESH_NONE, + 'posvals' => array( 0 => _("Disabled"), + 1 => '1', + 2 => '2', + 3 => '3', + 4 => '4', + 5 => '5', + 6 => '6', + 7 => '7', + 8 => '8', + 9 => '9') + ); + /* Assemble all this together and return it as our result. */ $result = array( 'grps' => $optgrps,