Skip to content

Commit 0e6ef75

Browse files
committed
Bump version numbers (plugin v3.1.10).
1 parent 3d2ee77 commit 0e6ef75

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

readme.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ Make sure your theme's `footer.php` file has `<?php wp_footer(); ?>` somewhere i
5555

5656
== ChangeLog ==
5757

58+
= Version 3.1.10 =
59+
60+
* New version of SyntaxHighlighter 3.x library to address XSS security issue. Props Ben Bidner for finding the bug and Alex Gorbatchev working with us (Automattic) to patch the issue.
61+
* Compatibility with moving the plugins folder to a location other than the default one.
62+
5863
= Version 3.1.9 =
5964

6065
* Reset box-shadow property for better theme support. Props Michael Fields.

syntaxhighlighter.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Plugin Name: SyntaxHighlighter Evolved
66
Plugin URI: http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/
7-
Version: 3.1.9
7+
Version: 3.1.10
88
Description: Easily post syntax-highlighted code to your site without having to modify the code at all. Uses Alex Gorbatchev's <a href="http://alexgorbatchev.com/wiki/SyntaxHighlighter">SyntaxHighlighter</a>. <strong>TIP:</strong> Don't use the Visual editor if you don't want your code mangled. TinyMCE will "clean up" your HTML.
99
Author: Alex Mills (Viper007Bond)
1010
Author URI: http://www.viper007bond.com/
@@ -21,7 +21,7 @@
2121

2222
class SyntaxHighlighter {
2323
// All of these variables are private. Filters are provided for things that can be modified.
24-
var $pluginver = '3.1.9'; // Plugin version
24+
var $pluginver = '3.1.10'; // Plugin version
2525
var $agshver = false; // Alex Gorbatchev's SyntaxHighlighter version (dynamically set below due to v2 vs v3)
2626
var $shfolder = false; // Controls what subfolder to load SyntaxHighlighter from (v2 or v3)
2727
var $settings = array(); // Contains the user's settings
@@ -111,7 +111,7 @@ function __construct() {
111111
$this->agshver = '2.1.364';
112112
} else {
113113
$this->shfolder = 'syntaxhighlighter3';
114-
$this->agshver = '3.0.83c';
114+
$this->agshver = '3.0.9';
115115
}
116116

117117
// Register brush scripts
@@ -219,7 +219,6 @@ function __construct() {
219219
'xhtml' => 'xml',
220220
'xslt' => 'xml',
221221
'html' => 'xml',
222-
'xhtml' => 'xml',
223222
) );
224223

225224

0 commit comments

Comments
 (0)