Changeset 1064539
- Timestamp:
- 01/10/2015 10:44:06 AM (11 years ago)
- Location:
- gregs-show-total-conversations
- Files:
-
- 3 edited
- 12 copied
-
tags/1.3.4 (copied) (copied from gregs-show-total-conversations/trunk)
-
tags/1.3.4/gstc-options-functions.php (copied) (copied from gregs-show-total-conversations/trunk/gstc-options-functions.php) (2 diffs)
-
tags/1.3.4/gstc-options.php (copied) (copied from gregs-show-total-conversations/trunk/gstc-options.php)
-
tags/1.3.4/gstc-setup-functions.php (copied) (copied from gregs-show-total-conversations/trunk/gstc-setup-functions.php)
-
tags/1.3.4/gstc.php (copied) (copied from gregs-show-total-conversations/trunk/gstc.php) (3 diffs)
-
tags/1.3.4/options-set/extra/gstc-options-donating.txt (copied) (copied from gregs-show-total-conversations/trunk/options-set/extra/gstc-options-donating.txt)
-
tags/1.3.4/options-set/extra/gstc-options-instructions.txt (copied) (copied from gregs-show-total-conversations/trunk/options-set/extra/gstc-options-instructions.txt)
-
tags/1.3.4/options-set/extra/gstc-options.txt (copied) (copied from gregs-show-total-conversations/trunk/options-set/extra/gstc-options.txt)
-
tags/1.3.4/options-set/gstc-options-donating.ini (copied) (copied from gregs-show-total-conversations/trunk/options-set/gstc-options-donating.ini)
-
tags/1.3.4/options-set/gstc-options-instructions.ini (copied) (copied from gregs-show-total-conversations/trunk/options-set/gstc-options-instructions.ini)
-
tags/1.3.4/readme.txt (copied) (copied from gregs-show-total-conversations/trunk/readme.txt) (3 diffs)
-
tags/1.3.4/uninstall.php (copied) (copied from gregs-show-total-conversations/trunk/uninstall.php)
-
trunk/gstc-options-functions.php (modified) (2 diffs)
-
trunk/gstc.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gregs-show-total-conversations/tags/1.3.4/gstc-options-functions.php
r808798 r1064539 3 3 /* Greg's Options Handler 4 4 5 Copyright (c) 2009-201 2Greg 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-show-total-conversations/tags/1.3.4/gstc.php
r1049199 r1064539 4 4 Plugin URI: http://gregsplugins.com/lib/plugin-details/gregs-show-total-conversations/ 5 5 Description: For WordPress 2.7 and above, this plugin displays the total number of threaded discussions contained within a post's comments. 6 Version: 1.3. 36 Version: 1.3.4 7 7 Author: Greg Mulhauser 8 8 Author URI: http://gregsplugins.com … … 11 11 /* Greg's Show Total Conversations 12 12 13 Copyright (c) 2009-201 2Greg Mulhauser13 Copyright (c) 2009-2015 Greg Mulhauser 14 14 http://gregsplugins.com 15 15 … … 173 173 // Note the following is not wrapped in an 'else' because the plugin adds functionalty to the admin pages as well 174 174 175 $gstc_instance = new gregsShowTotalConversations('gstc', '1.3. 3', "Greg's Show Total Conversations", 'http://gregsplugins.com/lib/plugin-details/gregs-show-total-conversations/');175 $gstc_instance = new gregsShowTotalConversations('gstc', '1.3.4', "Greg's Show Total Conversations", 'http://gregsplugins.com/lib/plugin-details/gregs-show-total-conversations/'); 176 176 177 177 function gstc_show_discussions_number_manually($zero=false, $one=false, $more=false) { -
gregs-show-total-conversations/tags/1.3.4/readme.txt
r1049201 r1064539 5 5 Requires at least: 2.7 6 6 Tested up to: 4.1 7 Stable tag: 1.3. 37 Stable tag: 1.3.4 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 = … … 79 79 == Upgrade Notice == 80 80 81 = 1.3. 3, 19 December 2014=82 * Note on WordPress 4.1 compatibility.81 = 1.3.4, 10 January 2015 = 82 * 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. 83 83 84 84 == Changelog == 85 86 = 1.3.4, 10 January 2015 = 87 * 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. 85 88 86 89 = 1.3.3, 19 December 2014 = -
gregs-show-total-conversations/trunk/gstc-options-functions.php
r808798 r1064539 3 3 /* Greg's Options Handler 4 4 5 Copyright (c) 2009-201 2Greg 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-show-total-conversations/trunk/gstc.php
r1049199 r1064539 4 4 Plugin URI: http://gregsplugins.com/lib/plugin-details/gregs-show-total-conversations/ 5 5 Description: For WordPress 2.7 and above, this plugin displays the total number of threaded discussions contained within a post's comments. 6 Version: 1.3. 36 Version: 1.3.4 7 7 Author: Greg Mulhauser 8 8 Author URI: http://gregsplugins.com … … 11 11 /* Greg's Show Total Conversations 12 12 13 Copyright (c) 2009-201 2Greg Mulhauser13 Copyright (c) 2009-2015 Greg Mulhauser 14 14 http://gregsplugins.com 15 15 … … 173 173 // Note the following is not wrapped in an 'else' because the plugin adds functionalty to the admin pages as well 174 174 175 $gstc_instance = new gregsShowTotalConversations('gstc', '1.3. 3', "Greg's Show Total Conversations", 'http://gregsplugins.com/lib/plugin-details/gregs-show-total-conversations/');175 $gstc_instance = new gregsShowTotalConversations('gstc', '1.3.4', "Greg's Show Total Conversations", 'http://gregsplugins.com/lib/plugin-details/gregs-show-total-conversations/'); 176 176 177 177 function gstc_show_discussions_number_manually($zero=false, $one=false, $more=false) { -
gregs-show-total-conversations/trunk/readme.txt
r1049201 r1064539 5 5 Requires at least: 2.7 6 6 Tested up to: 4.1 7 Stable tag: 1.3. 37 Stable tag: 1.3.4 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 = … … 79 79 == Upgrade Notice == 80 80 81 = 1.3. 3, 19 December 2014=82 * Note on WordPress 4.1 compatibility.81 = 1.3.4, 10 January 2015 = 82 * 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. 83 83 84 84 == Changelog == 85 86 = 1.3.4, 10 January 2015 = 87 * 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. 85 88 86 89 = 1.3.3, 19 December 2014 =
Note: See TracChangeset
for help on using the changeset viewer.