Hi Mateen!
I tracked down the problem. At the top of your /global/lang/en_us.php file, right before these two lines:
add this line:
For some reason some systems get confused if the $LANG isn't defined. I remember this from FT1 now; I don't know why it causes problems. It only seems to be an issue with really large variables like $LANG.
I'll include a fix for this in the next release.
- Ben
I tracked down the problem. At the top of your /global/lang/en_us.php file, right before these two lines:
PHP Code:
// Special (non-editable)
$LANG["special_form_tools"] = "Form Tools";
$LANG["special_form_tools_c"] = "Form Tools:";
add this line:
PHP Code:
$LANG = array();
For some reason some systems get confused if the $LANG isn't defined. I remember this from FT1 now; I don't know why it causes problems. It only seems to be an issue with really large variables like $LANG.
I'll include a fix for this in the next release.
- Ben