Auto-submit on folder change

This commit is contained in:
Jamie Cameron
2008-07-31 18:31:19 +00:00
parent 5d94ad58d3
commit 260de3afbb
2 changed files with 4 additions and 1 deletions

View File

@@ -1329,6 +1329,7 @@ else {
}
# simplify_subject(subject)
# Simplifies and truncates a subject for display in the mail list
sub simplify_subject
{
local $rv = &eucconv(&decode_mimewords($_[0]));
@@ -1337,6 +1338,7 @@ return &html_escape($rv);
}
# quoted_decode(text)
# Converts quoted-printable format to the original
sub quoted_decode
{
local $t = $_[0];
@@ -1348,6 +1350,7 @@ return $t;
}
# quoted_encode(text)
# Encodes text to quoted-printable format
sub quoted_encode
{
local $t = $_[0];

View File

@@ -31,7 +31,7 @@ print &check_clicks_function();
($folder) = grep { $_->{'index'} == $in{'folder'} } @folders;
# Get folder-selection HTML
$sel = &folder_select(\@folders, $folder, "folder");
$sel = &folder_select(\@folders, $folder, "folder", undef, 0, 1);
# Work out start from jump page
$perpage = $folder->{'perpage'} || $config{'perpage'};