1 |
1634
|
Luisehahne
|
WebsiteBaker 2.8.3 Developing Instructions/Informations
|
2 |
|
|
=======================================================
|
3 |
|
|
|
4 |
1635
|
Luisehahne
|
$Id: DEVINFOS 1634 2012-03-09 02:20:16Z Luisehahne $
|
5 |
1634
|
Luisehahne
|
|
6 |
|
|
|
7 |
1635
|
Luisehahne
|
|
8 |
|
|
09 Mar-2012 Build 1634
|
9 |
|
|
----------------------
|
10 |
|
|
If using the $MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] in your module, please add
|
11 |
|
|
following code to your script
|
12 |
1634
|
Luisehahne
|
[code]
|
13 |
|
|
$search = array('{SERVER_EMAIL}');
|
14 |
|
|
$replace = array( SERVER_EMAIL);
|
15 |
|
|
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = str_replace($search,$replace,$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA']);
|
16 |
|
|
[/code]
|
17 |
|
|
|