fix for anyone having trouble with passwords with a $ in them
16 Jun
2016
16 Jun
'16
10:10 p.m.
in config/functions.php at line 10 foreach ($_POST as $postkey => $postval) { $_POST[$postkey] = preg_replace('/[\'";$%]/','',$postval); } replace with foreach ($_POST as $postkey => $postval) { if (($postkey <> "crypt") && ($postkey <> "clear")) $_POST[$postkey] = preg_replace('/[\'";$%]/','',$postval); } this is for exim4u current stable.
3135
Age (days ago)
3135
Last active (days ago)
0 comments
1 participants
participants (1)
-
Chuck Cochems