on a default install when i visit admin/settings/js_injector i get the below error in a red box:
warning: Parameter 1 to theme_js_injector_admin_form() expected to be a reference, value given in <path>/includes/theme.inc on line 656.
on line 656 is $output = call_user_func_array($info['function'], $args);
Comments
Comment #1
yannickoothe dev version works great!
Comment #2
hubbi.fillah commentedopen file js_injector.admin.inc and find :
function theme_js_injector_admin_form(&$form)on line 54 and just edit tofunction theme_js_injector_admin_form($form).it work on localhost XAMPP
Comment #3
ponsich commented