Changeset 1064538
- Timestamp:
- 01/10/2015 10:42:49 AM (11 years ago)
- Location:
- gregs-comment-length-limiter
- Files:
-
- 3 edited
- 12 copied
-
tags/1.6.3 (copied) (copied from gregs-comment-length-limiter/trunk)
-
tags/1.6.3/gcll-options-functions.php (copied) (copied from gregs-comment-length-limiter/trunk/gcll-options-functions.php) (2 diffs)
-
tags/1.6.3/gcll-options.php (copied) (copied from gregs-comment-length-limiter/trunk/gcll-options.php)
-
tags/1.6.3/gcll-setup-functions.php (copied) (copied from gregs-comment-length-limiter/trunk/gcll-setup-functions.php)
-
tags/1.6.3/gcll.php (copied) (copied from gregs-comment-length-limiter/trunk/gcll.php) (3 diffs)
-
tags/1.6.3/options-set/extra/gcll-options-donating.txt (copied) (copied from gregs-comment-length-limiter/trunk/options-set/extra/gcll-options-donating.txt)
-
tags/1.6.3/options-set/extra/gcll-options-instructions.txt (copied) (copied from gregs-comment-length-limiter/trunk/options-set/extra/gcll-options-instructions.txt)
-
tags/1.6.3/options-set/extra/gcll-options.txt (copied) (copied from gregs-comment-length-limiter/trunk/options-set/extra/gcll-options.txt)
-
tags/1.6.3/options-set/gcll-options-donating.ini (copied) (copied from gregs-comment-length-limiter/trunk/options-set/gcll-options-donating.ini)
-
tags/1.6.3/options-set/gcll-options-instructions.ini (copied) (copied from gregs-comment-length-limiter/trunk/options-set/gcll-options-instructions.ini)
-
tags/1.6.3/readme.txt (copied) (copied from gregs-comment-length-limiter/trunk/readme.txt) (3 diffs)
-
tags/1.6.3/uninstall.php (copied) (copied from gregs-comment-length-limiter/trunk/uninstall.php)
-
trunk/gcll-options-functions.php (modified) (2 diffs)
-
trunk/gcll.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gregs-comment-length-limiter/tags/1.6.3/gcll-options-functions.php
r808803 r1064538 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-comment-length-limiter/tags/1.6.3/gcll.php
r1049210 r1064538 4 4 Plugin URI: http://gregsplugins.com/lib/plugin-details/gregs-comment-length-limiter/ 5 5 Description: For WordPress 2.7 and above, this plugin displays a countdown of the remaining characters available as users enter comments on your posts, with a total comment length limit set by you. 6 Version: 1.6. 26 Version: 1.6.3 7 7 Author: Greg Mulhauser 8 8 Author URI: http://gregsplugins.com/ … … 11 11 /* Greg's Comment Length Limiter 12 12 13 Copyright (c) 2009-201 2Greg Mulhauser13 Copyright (c) 2009-2015 Greg Mulhauser 14 14 http://gregsplugins.com 15 15 … … 239 239 } // end admin-only stuff 240 240 else { 241 $gcll_instance = new gregsCommentLengthLimiter('gcll', '1.6. 2', "Greg's Comment Length Limiter");241 $gcll_instance = new gregsCommentLengthLimiter('gcll', '1.6.3', "Greg's Comment Length Limiter"); 242 242 function gcll_tweak_textarea() { 243 243 global $gcll_instance; -
gregs-comment-length-limiter/tags/1.6.3/readme.txt
r1049210 r1064538 5 5 Requires at least: 2.7 6 6 Tested up to: 4.1 7 Stable tag: 1.6. 27 Stable tag: 1.6.3 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 = … … 98 98 == Upgrade Notice == 99 99 100 = 1.6. 2, 19 December 2014=101 * Note on WordPress 4.1 compatibility.100 = 1.6.3, 10 January 2015 = 101 * 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. 102 102 103 103 == Changelog == 104 105 = 1.6.3, 10 January 2015 = 106 * 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. 104 107 105 108 = 1.6.2, 19 December 2014 = -
gregs-comment-length-limiter/trunk/gcll-options-functions.php
r808803 r1064538 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-comment-length-limiter/trunk/gcll.php
r1049210 r1064538 4 4 Plugin URI: http://gregsplugins.com/lib/plugin-details/gregs-comment-length-limiter/ 5 5 Description: For WordPress 2.7 and above, this plugin displays a countdown of the remaining characters available as users enter comments on your posts, with a total comment length limit set by you. 6 Version: 1.6. 26 Version: 1.6.3 7 7 Author: Greg Mulhauser 8 8 Author URI: http://gregsplugins.com/ … … 11 11 /* Greg's Comment Length Limiter 12 12 13 Copyright (c) 2009-201 2Greg Mulhauser13 Copyright (c) 2009-2015 Greg Mulhauser 14 14 http://gregsplugins.com 15 15 … … 239 239 } // end admin-only stuff 240 240 else { 241 $gcll_instance = new gregsCommentLengthLimiter('gcll', '1.6. 2', "Greg's Comment Length Limiter");241 $gcll_instance = new gregsCommentLengthLimiter('gcll', '1.6.3', "Greg's Comment Length Limiter"); 242 242 function gcll_tweak_textarea() { 243 243 global $gcll_instance; -
gregs-comment-length-limiter/trunk/readme.txt
r1049210 r1064538 5 5 Requires at least: 2.7 6 6 Tested up to: 4.1 7 Stable tag: 1.6. 27 Stable tag: 1.6.3 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 = … … 98 98 == Upgrade Notice == 99 99 100 = 1.6. 2, 19 December 2014=101 * Note on WordPress 4.1 compatibility.100 = 1.6.3, 10 January 2015 = 101 * 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. 102 102 103 103 == Changelog == 104 105 = 1.6.3, 10 January 2015 = 106 * 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. 104 107 105 108 = 1.6.2, 19 December 2014 =
Note: See TracChangeset
for help on using the changeset viewer.