Plugin Directory

Changeset 146545


Ignore:
Timestamp:
08/17/2009 06:54:09 AM (17 years ago)
Author:
nburlock
Message:

fixed class=javascript bug

Location:
easy-google-syntax-highlighter/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • easy-google-syntax-highlighter/trunk/easy-google-syntax-highlighter.php

    r139555 r146545  
    44Plugin URI: http://blog.burlock.org/easy-google-syntax-highlighter/
    55Description: This plugin is an implementation of the <a href='http://alexgorbatchev.com/wiki/SyntaxHighlighter'>Google Syntax Highlighter 2.0</a> with a front end to allow configuring all the global settings that are available.  Features include selecting themes and specifying languages to highlight.  Any language that is not selected will not be called by your blog which will improve page loading performance.
    6 Version: 1.1.1
     6Version: 1.1.2
    77Author: Neil Burlock
    88Author URI: http://blog.burlock.org
     
    556556    if (get_option(key_auto_brushes) == key_false) {
    557557        // key_brushes
    558         echo "<script class='javascript' src='$path/scripts/shCore.js'></script>\n";
     558        echo "<script type='text/javascript' src='$path/scripts/shCore.js'></script>\n";
    559559        $brushes = unserialize(get_option(key_brushes));
    560560        foreach ($brushes as $brush) {
    561             echo "<script class='javascript' src='$path/scripts/$brush'></script>\n";
     561            echo "<script type='text/javascript' src='$path/scripts/$brush'></script>\n";
    562562        }
    563563        echo easy_gsh_insert_jscript();
  • easy-google-syntax-highlighter/trunk/readme.txt

    r145154 r146545  
    55Requires at least:2.0.0
    66Tested up to: 2.8.4
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88
    99An implementation of Alex Gorbachev's Google Syntax Highlighter with a front end to allow configuration.
     
    3434== Changelog ==
    3535
     36= 1.1.2 =
     37* Changed "class='javascript'" to "type='javascript'" in a couple of places (thanks Markus)
     38
    3639= 1.1.1 =
    3740* Fixed incorrect path for script copy swf file
Note: See TracChangeset for help on using the changeset viewer.