After installing MODX 1.0.7 and while configuring ManagerManager, I ran into the same issue, that I had when configuring ManagerManager on MODX 1.0.6.
In the configuration-tab the parameter for the "jQuery URL override" is saved in the variable named &js_src_type, but in "mm.inc.php" the script uses $js_src_override.
A simple change in the plugin-configuration will do the trick:
Replace
&js_src_type=jQuery URL override;text;
with
&js_src_override=jQuery URL override;text;
After installing MODX 1.0.7 and while configuring ManagerManager, I ran into the same issue, that I had when configuring ManagerManager on MODX 1.0.6.
In the configuration-tab the parameter for the "jQuery URL override" is saved in the variable named
&js_src_type
, but in "mm.inc.php" the script uses$js_src_override
.A simple change in the plugin-configuration will do the trick: Replace
&js_src_type=jQuery URL override;text;
with&js_src_override=jQuery URL override;text;