Hi Guys,

headjs.inc line 26:

$path = function_exists('libraries_get_path') ? libraries_get_path('headjs') : 'sites/all/libraries/headjs';

Need to add base_path() call before 'sites/all/libraries/headjs'; So it should be like:

$path = function_exists('libraries_get_path') ? libraries_get_path('headjs') : base_path().'sites/all/libraries/headjs';

Thanks,
Vadim

Comments

alexweber’s picture

Thanks, I fixed this and will commit tonight.

vadim.eremeev’s picture

Thanks, waiting for update!

alexweber’s picture

commited to 6.x-2.x dev, should be available in a couple hours!