Hello,
It seems this problem with site template. We suppose it contains incorrect code for remove MooTools library. Probably it contains the following code:
Code: |
$headerstuff = $this->getHeadData();
$headerstuff['scripts'] = array();
$this->setHeadData($headerstuff);
|
but correct code should look like:
Code: |
$headerstuff = $this->getHeadData();
$scripts = $headerstuff['scripts'];
foreach ($scripts as $path => $val)
{
if (strpos($path, 'mootools.js') !== false || strpos($path, 'caption.js') !== false) unset($scripts[$path]);
}
$headerstuff['scripts'] = $scripts;
$this->setHeadData($headerstuff);
|
Regards,
ARI Soft