Not a bug XF isn't attempting to load javascript via devjs.php anymore

Jake B.

Well-known member
Affected version
2.0.0 Beta 1
I have

Code:
$config['development']['enabled'] = true;
$config['development']['fullJs'] = false;

in my config.php. However, in Templater within includeJs() $productionMode returns true because empty(false) returns true. I've double checked by dumping out $developmentConfig['fullJs'] to ensure it is set to false correctly and it does return the correct value.
 
Just went out on a limb and set $config['development']['fullJs'] = true; instead and that seems to be loading my js through devjs.php now misread the variable name apparently :P
 
Back
Top Bottom