1
|
WebsiteBaker 2.8.3 Developing Instructions/Informations
|
2
|
=======================================================
|
3
|
|
4
|
$Id: DEVINFOS 1634 2012-03-09 02:20:16Z Luisehahne $
|
5
|
|
6
|
|
7
|
|
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
|
[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
|
|
18
|
|