git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11109
7612ce4b-ef26-0410-bec9-
ea0150e637f0
- Fixed session lockups on large attachment downloads.
- Added configtest hook in src/configtest.php.
- Improved error handling for the help pages.
+ - Fixed possibility to use single quote in provider name (#1475744).
Version 1.5.1 (branched on 2006-02-12)
--------------------------------------
sub command8 {
print "Here you can set the name of the link on the right of the page.\n";
- print "The default is 'SquirrelMail/'\n";
+ print "The default is 'SquirrelMail'\n";
print "\n";
print "[$WHT$provider_name$NRM]: $WHT";
$new_provider_name = <STDIN>;
} else {
$new_provider_name =~ s/[\r\n]//g;
$new_provider_name =~ s/^\s+$//g;
+ $new_provider_name =~ s/\'/\\'/g;
}
return $new_provider_name;
}