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

7huo’s picture

Title: Conditional comment is wrong » same wrong

same wrong

Leeteq’s picture

Title: same wrong » Syntax error in conditional comment
Version: 7.x-1.1 » 7.x-1.x-dev
ckng’s picture

Status: Active » Closed (fixed)

Nice catch, fixed in dev.