2016-04-11, 05:41:07
I just wanted to mention, that I've copied the file en_US.php to de_DE.php and changed in cbcontact_cfg.php
to
To make this work I had to move the include at around line 240 to after the global statements like so:
PHP Code:
$LANG = 'en_US';
PHP Code:
$LANG = 'de_DE';
To make this work I had to move the include at around line 240 to after the global statements like so:
PHP Code:
global $EMAIL;
global $SITEURL;
global $SITENAME;
global $LANG;
global $PRETTYURLS;
global $i18n;
global $language;
// Read setting file with variables of contact form
include (GSPLUGINPATH.'cbcontact/cbcontact_cfg.php');