Changeset 3247343
- Timestamp:
- 02/26/2025 06:47:38 PM (13 months ago)
- Location:
- plugin-organizer
- Files:
-
- 34 added
- 5 edited
-
tags/10.2.1 (added)
-
tags/10.2.1/css (added)
-
tags/10.2.1/css/PO-admin-global.css (added)
-
tags/10.2.1/css/PO-admin.css (added)
-
tags/10.2.1/js (added)
-
tags/10.2.1/js/validation.js (added)
-
tags/10.2.1/lib (added)
-
tags/10.2.1/lib/PO_Ajax.class.php (added)
-
tags/10.2.1/lib/PO_Template.class.php (added)
-
tags/10.2.1/lib/PluginOrganizer.class.php (added)
-
tags/10.2.1/lib/PluginOrganizerMU.class.php (added)
-
tags/10.2.1/plugin-organizer.php (added)
-
tags/10.2.1/readme.txt (added)
-
tags/10.2.1/screenshot-1.jpg (added)
-
tags/10.2.1/screenshot-2.jpg (added)
-
tags/10.2.1/screenshot-3.jpg (added)
-
tags/10.2.1/screenshot-4.jpg (added)
-
tags/10.2.1/screenshot-5.jpg (added)
-
tags/10.2.1/screenshot-6.jpg (added)
-
tags/10.2.1/tpl (added)
-
tags/10.2.1/tpl/common_js.php (added)
-
tags/10.2.1/tpl/globalPlugins.php (added)
-
tags/10.2.1/tpl/global_plugins_js.php (added)
-
tags/10.2.1/tpl/groupAndOrder.php (added)
-
tags/10.2.1/tpl/group_and_order_js.php (added)
-
tags/10.2.1/tpl/postMetaBox.php (added)
-
tags/10.2.1/tpl/ptPlugins.php (added)
-
tags/10.2.1/tpl/pt_plugins_js.php (added)
-
tags/10.2.1/tpl/searchPlugins.php (added)
-
tags/10.2.1/tpl/search_plugins_js.php (added)
-
tags/10.2.1/tpl/settings.php (added)
-
tags/10.2.1/tpl/settings_page_js.php (added)
-
tags/10.2.1/uninstall.php (added)
-
trunk/css/PO-admin-global.css (added)
-
trunk/lib/PO_Template.class.php (modified) (3 diffs)
-
trunk/lib/PluginOrganizer.class.php (modified) (2 diffs)
-
trunk/lib/PluginOrganizerMU.class.php (modified) (2 diffs)
-
trunk/plugin-organizer.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugin-organizer/trunk/lib/PO_Template.class.php
r2506031 r3247343 85 85 $storedPluginLists = $wpdb->get_row($sql, ARRAY_A); 86 86 87 if ($storedPluginLists == null) { 88 $storedPluginLists = array('disabled_plugins'=>'', 'disabled_mobile_plugins'=>'', 'disabled_groups'=>'', 'disabled_mobile_groups'=>''); 89 } 90 87 91 $globalPlugins = (is_array(@unserialize($storedPluginLists['disabled_plugins'])))? @unserialize($storedPluginLists['disabled_plugins']):array(); 88 92 $globalMobilePlugins = (is_array(@unserialize($storedPluginLists['disabled_mobile_plugins'])))? @unserialize($storedPluginLists['disabled_mobile_plugins']):array(); … … 123 127 $storedPluginLists = $wpdb->get_row($sql, ARRAY_A); 124 128 129 if ($storedPluginLists == null) { 130 $storedPluginLists = array('disabled_plugins'=>'', 'disabled_mobile_plugins'=>'', 'disabled_groups'=>'', 'disabled_mobile_groups'=>''); 131 } 132 125 133 $globalPlugins = (is_array(@unserialize($storedPluginLists['disabled_plugins'])))? @unserialize($storedPluginLists['disabled_plugins']):array(); 126 134 $globalMobilePlugins = (is_array(@unserialize($storedPluginLists['disabled_mobile_plugins'])))? @unserialize($storedPluginLists['disabled_mobile_plugins']):array(); … … 146 154 $storedPluginLists = $wpdb->get_row($sql, ARRAY_A); 147 155 156 if ($storedPluginLists == null) { 157 $storedPluginLists = array('disabled_plugins'=>'', 'disabled_mobile_plugins'=>'', 'disabled_groups'=>'', 'disabled_mobile_groups'=>''); 158 } 148 159 $pluginLists = array('_'=>array( 149 160 'enabled_plugin_list'=>array(), -
plugin-organizer/trunk/lib/PluginOrganizer.class.php
r3236793 r3247343 326 326 global $pagenow; 327 327 ##Check version and activate if needed. 328 if (get_option("PO_version_num") != "10.2 " && !in_array($pagenow, array("plugins.php", "update-core.php", "update.php"))) {328 if (get_option("PO_version_num") != "10.2.1" && !in_array($pagenow, array("plugins.php", "update-core.php", "update.php"))) { 329 329 $this->activate(); 330 330 } … … 641 641 } 642 642 643 if (get_option("PO_version_num") != "10.2 ") {644 update_option("PO_version_num", "10.2 ");643 if (get_option("PO_version_num") != "10.2.1") { 644 update_option("PO_version_num", "10.2.1"); 645 645 } 646 646 -
plugin-organizer/trunk/lib/PluginOrganizerMU.class.php
r3236793 r3247343 4 4 Plugin URI: https://www.sterup.com/wordpress-plugins/plugin-organizer/ 5 5 Description: A plugin for specifying the load order of your plugins. 6 Version: 10.2 6 Version: 10.2.1 7 7 Author: Jeff Sterup 8 8 Author URI: https://www.sterup.com … … 80 80 81 81 $this->set_requested_permalink(); 82 if (get_option('PO_updating_plugin') != '1' && get_option("PO_version_num") != "10.2 ") {82 if (get_option('PO_updating_plugin') != '1' && get_option("PO_version_num") != "10.2.1") { 83 83 $newPluginList = $pluginList; 84 $this->adminMsg[] = '<strong>WARNING:</strong> Selective plugin loading for Plugin Organizer has been disabled because the version numbers of the MU plugin and the standard plugin don\'t match.<br />The current version number returned from the database is '.get_option("PO_version_num").' and the current MU plugin version number is 10.2. <br />If you are using a caching plugin try clearing the cache.';84 $this->adminMsg[] = '<strong>WARNING:</strong> Selective plugin loading for Plugin Organizer has been disabled because the version numbers of the MU plugin and the standard plugin don\'t match.<br />The current version number returned from the database is '.get_option("PO_version_num").' and the current MU plugin version number is 10.2.1.<br />If you are using a caching plugin try clearing the cache.'; 85 85 } else { 86 86 $sql = "SELECT disabled_plugins, disabled_mobile_plugins, disabled_groups, disabled_mobile_groups FROM ".$wpdb->prefix."po_plugins WHERE post_type='global_plugin_lists' AND post_id=0"; -
plugin-organizer/trunk/plugin-organizer.php
r3236799 r3247343 4 4 Plugin URI: https://www.sterup.com/wordpress-plugins/plugin-organizer/ 5 5 Description: A plugin to disable plugins on indivudual pages and change the order that they are loaded in. 6 Version: 10.2 6 Version: 10.2.1 7 7 Author: Jeff Sterup 8 8 Author URI: https://www.sterup.com -
plugin-organizer/trunk/readme.txt
r3236799 r3247343 5 5 Requires at least: 4.6.0 6 6 Tested up to: 6.7.2 7 Stable tag: 10.2 7 Stable tag: 10.2.1 8 8 License: GPLv2 9 9 … … 123 123 124 124 == Changelog == 125 126 = 10.2.1 = 127 Replacing missing PO-admn-global.css file that was missing from last update 128 Fixing deprecation warning on global plugins page if no global plugins are set. 125 129 126 130 = 10.2 = … … 796 800 == Upgrade Notice == 797 801 798 = 10.2 =799 Updating URLs in readme to point to new site. 800 Bumped tested version of Wordpress 802 = 10.2.1 = 803 Replacing missing PO-admn-global.css file that was missing from last update 804 Fixing deprecation warning on global plugins page if no global plugins are set.
Note: See TracChangeset
for help on using the changeset viewer.