Actions
Feature #17849
closedMailform / auto_respond_msg with slashes
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2007-11-25
Due date:
% Done:
0%
Estimated time:
PHP Version:
4.3
Tags:
Complexity:
Sprint Focus:
Description
It would be nice to be able to send slashes with the auto respond message, i.e. if you want to pass an URL to the recipient.
It is very easy to do:
File 'class.t3lib_htmlmail.php', line ~730
replace
$theParts1 = str_replace("/",chr(10),$theParts1);
with:
$theParts[1] = str_replace("//","###doubleslash###",$theParts[1]);
$theParts[1] = str_replace("/",chr(10),$theParts[1]);
$theParts[1] = str_replace("###doubleslash###","/",$theParts[1]);
Then the user is able to enter two slashes if he wants to have one in the auto_respond_msg.
Nice, isn't it?
Stefan Padberg, Wuppertal
(issue imported from #M6832)
Actions