Changeset 1064537
- Timestamp:
- 01/10/2015 10:41:37 AM (11 years ago)
- Location:
- gregs-threaded-comment-numbering
- Files:
-
- 3 edited
- 12 copied
-
tags/1.5.6 (copied) (copied from gregs-threaded-comment-numbering/trunk)
-
tags/1.5.6/gtcn-options-functions.php (copied) (copied from gregs-threaded-comment-numbering/trunk/gtcn-options-functions.php) (2 diffs)
-
tags/1.5.6/gtcn-options.php (copied) (copied from gregs-threaded-comment-numbering/trunk/gtcn-options.php)
-
tags/1.5.6/gtcn-setup-functions.php (copied) (copied from gregs-threaded-comment-numbering/trunk/gtcn-setup-functions.php)
-
tags/1.5.6/gtcn.php (copied) (copied from gregs-threaded-comment-numbering/trunk/gtcn.php) (3 diffs)
-
tags/1.5.6/options-set/extra/gtcn-options-donating.txt (copied) (copied from gregs-threaded-comment-numbering/trunk/options-set/extra/gtcn-options-donating.txt)
-
tags/1.5.6/options-set/extra/gtcn-options-instructions.txt (copied) (copied from gregs-threaded-comment-numbering/trunk/options-set/extra/gtcn-options-instructions.txt)
-
tags/1.5.6/options-set/extra/gtcn-options.txt (copied) (copied from gregs-threaded-comment-numbering/trunk/options-set/extra/gtcn-options.txt)
-
tags/1.5.6/options-set/gtcn-options-donating.ini (copied) (copied from gregs-threaded-comment-numbering/trunk/options-set/gtcn-options-donating.ini)
-
tags/1.5.6/options-set/gtcn-options-instructions.ini (copied) (copied from gregs-threaded-comment-numbering/trunk/options-set/gtcn-options-instructions.ini)
-
tags/1.5.6/readme.txt (copied) (copied from gregs-threaded-comment-numbering/trunk/readme.txt) (3 diffs)
-
tags/1.5.6/uninstall.php (copied) (copied from gregs-threaded-comment-numbering/trunk/uninstall.php)
-
trunk/gtcn-options-functions.php (modified) (2 diffs)
-
trunk/gtcn.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gregs-threaded-comment-numbering/tags/1.5.6/gtcn-options-functions.php
r808804 r1064537 3 3 /* Greg's Options Handler 4 4 5 Copyright (c) 2009-201 1Greg Mulhauser5 Copyright (c) 2009-2015 Greg Mulhauser 6 6 http://gregsplugins.com 7 7 … … 61 61 $root = WP_PLUGIN_DIR . '/' . $dir . $subdir; // this is where we're looking for our options files 62 62 $sub = isset ($_GET['submenu']) ? $_GET['submenu'] : ''; 63 if ($sub && !isset($this->pages[$sub])) $sub = ''; // is requested page a real sub page? 63 64 $filetail = ($sub != '') ? "-$sub" : ''; // options file corresponding to this submenu 64 65 $this->submenu = $sub; -
gregs-threaded-comment-numbering/tags/1.5.6/gtcn.php
r1049203 r1064537 4 4 Plugin URI: http://gregsplugins.com/lib/plugin-details/gregs-threaded-comment-numbering/ 5 5 Description: For WordPress 2.7 and above, this plugin numbers comments sequentially, including an hierarchical count up to ten levels deep (e.g., replies to comment number 2 will be numbered as 2.1, 2.2, 2.3 etc.). 6 Version: 1.5. 56 Version: 1.5.6 7 7 Author: Greg Mulhauser 8 8 Author URI: http://gregsplugins.com/ … … 11 11 /* Greg's Threaded Comment Numbering 12 12 13 Copyright (c) 2009-201 2Greg Mulhauser13 Copyright (c) 2009-2015 Greg Mulhauser 14 14 http://gregsplugins.com 15 15 … … 339 339 } // end admin-only stuff 340 340 else { 341 $gtcn = new gregsThreadedCommentNumbering('gtcn', '1.5. 5', "Greg's Threaded Comment Numbering");341 $gtcn = new gregsThreadedCommentNumbering('gtcn', '1.5.6', "Greg's Threaded Comment Numbering"); 342 342 function gtcn_comment_numbering($comment_ID, $args, $wrapclass = 'commentnumber', $mode = 'echo') { 343 343 global $gtcn; -
gregs-threaded-comment-numbering/tags/1.5.6/readme.txt
r1049203 r1064537 5 5 Requires at least: 2.7 6 6 Tested up to: 4.1 7 Stable tag: 1.5. 57 Stable tag: 1.5.6 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 19 19 = New in This Version = 20 20 21 * Note on WordPress 4.1 compatibility.21 * Fixed potential XSS vulnerability which could affect administrators who are logged in using an old browser and who visit a maliciously crafted URL on their own site. Thanks to Kacper Szurek for responsible disclosure of this problem in a different plugin. 22 22 23 23 = Background = … … 68 68 == Upgrade Notice == 69 69 70 = 1.5. 5, 19 December 2014=71 * Note on WordPress 4.1 compatibility.70 = 1.5.6, 10 January 2015 = 71 * Fixed potential XSS vulnerability which could affect administrators who are logged in using an old browser and who visit a maliciously crafted URL on their own site. Thanks to Kacper Szurek for responsible disclosure of this problem in a different plugin. 72 72 73 73 == Changelog == 74 75 = 1.5.6, 10 January 2015 = 76 * Fixed potential XSS vulnerability which could affect administrators who are logged in using an old browser and who visit a maliciously crafted URL on their own site. Thanks to Kacper Szurek for responsible disclosure of this problem in a different plugin. 74 77 75 78 = 1.5.5, 19 December 2014 = -
gregs-threaded-comment-numbering/trunk/gtcn-options-functions.php
r808804 r1064537 3 3 /* Greg's Options Handler 4 4 5 Copyright (c) 2009-201 1Greg Mulhauser5 Copyright (c) 2009-2015 Greg Mulhauser 6 6 http://gregsplugins.com 7 7 … … 61 61 $root = WP_PLUGIN_DIR . '/' . $dir . $subdir; // this is where we're looking for our options files 62 62 $sub = isset ($_GET['submenu']) ? $_GET['submenu'] : ''; 63 if ($sub && !isset($this->pages[$sub])) $sub = ''; // is requested page a real sub page? 63 64 $filetail = ($sub != '') ? "-$sub" : ''; // options file corresponding to this submenu 64 65 $this->submenu = $sub; -
gregs-threaded-comment-numbering/trunk/gtcn.php
r1049203 r1064537 4 4 Plugin URI: http://gregsplugins.com/lib/plugin-details/gregs-threaded-comment-numbering/ 5 5 Description: For WordPress 2.7 and above, this plugin numbers comments sequentially, including an hierarchical count up to ten levels deep (e.g., replies to comment number 2 will be numbered as 2.1, 2.2, 2.3 etc.). 6 Version: 1.5. 56 Version: 1.5.6 7 7 Author: Greg Mulhauser 8 8 Author URI: http://gregsplugins.com/ … … 11 11 /* Greg's Threaded Comment Numbering 12 12 13 Copyright (c) 2009-201 2Greg Mulhauser13 Copyright (c) 2009-2015 Greg Mulhauser 14 14 http://gregsplugins.com 15 15 … … 339 339 } // end admin-only stuff 340 340 else { 341 $gtcn = new gregsThreadedCommentNumbering('gtcn', '1.5. 5', "Greg's Threaded Comment Numbering");341 $gtcn = new gregsThreadedCommentNumbering('gtcn', '1.5.6', "Greg's Threaded Comment Numbering"); 342 342 function gtcn_comment_numbering($comment_ID, $args, $wrapclass = 'commentnumber', $mode = 'echo') { 343 343 global $gtcn; -
gregs-threaded-comment-numbering/trunk/readme.txt
r1049203 r1064537 5 5 Requires at least: 2.7 6 6 Tested up to: 4.1 7 Stable tag: 1.5. 57 Stable tag: 1.5.6 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 19 19 = New in This Version = 20 20 21 * Note on WordPress 4.1 compatibility.21 * Fixed potential XSS vulnerability which could affect administrators who are logged in using an old browser and who visit a maliciously crafted URL on their own site. Thanks to Kacper Szurek for responsible disclosure of this problem in a different plugin. 22 22 23 23 = Background = … … 68 68 == Upgrade Notice == 69 69 70 = 1.5. 5, 19 December 2014=71 * Note on WordPress 4.1 compatibility.70 = 1.5.6, 10 January 2015 = 71 * Fixed potential XSS vulnerability which could affect administrators who are logged in using an old browser and who visit a maliciously crafted URL on their own site. Thanks to Kacper Szurek for responsible disclosure of this problem in a different plugin. 72 72 73 73 == Changelog == 74 75 = 1.5.6, 10 January 2015 = 76 * Fixed potential XSS vulnerability which could affect administrators who are logged in using an old browser and who visit a maliciously crafted URL on their own site. Thanks to Kacper Szurek for responsible disclosure of this problem in a different plugin. 74 77 75 78 = 1.5.5, 19 December 2014 =
Note: See TracChangeset
for help on using the changeset viewer.