Closed (fixed)
Project:
TagCanvas
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Jun 2012 at 17:00 UTC
Updated:
22 Aug 2012 at 04:11 UTC
The conditional comment in tagcanvas.module on line 78 is wrong.
if (function_exists('libraries_get_path')) {
$expath = libraries_get_path('excanvas_r3') . '/excanvas.compiled.js';
if (file_exists($expath)) {
$exhtml = array(
'#type' => 'markup',
'#markup' => '<!--[if IE lte 8]><script language="javascript" type="text/javascript" src="/' . $expath . '"></script><![endif]-->',
Last line It should be:
'#markup' => '<!--[if lte IE 8]> ...
Comments
Comment #1
7huo commentedsame wrong
Comment #2
Leeteq commentedComment #3
ckngNice catch, fixed in dev.