Changeset 3336632
- Timestamp:
- 07/30/2025 12:33:18 PM (6 months ago)
- Location:
- publishpress-authors
- Files:
-
- 10 edited
- 1 copied
-
tags/4.8.1 (copied) (copied from publishpress-authors/trunk)
-
tags/4.8.1/defines.php (modified) (1 diff)
-
tags/4.8.1/publishpress-authors.php (modified) (1 diff)
-
tags/4.8.1/readme.txt (modified) (1 diff)
-
tags/4.8.1/src/core/Classes/Utils.php (modified) (1 diff)
-
tags/4.8.1/src/core/Plugin.php (modified) (1 diff)
-
trunk/defines.php (modified) (1 diff)
-
trunk/publishpress-authors.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/core/Classes/Utils.php (modified) (1 diff)
-
trunk/src/core/Plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
publishpress-authors/tags/4.8.1/defines.php
r3332788 r3336632 13 13 14 14 if (!defined('PP_AUTHORS_LOADED')) { 15 define('PP_AUTHORS_VERSION', '4.8. 0');15 define('PP_AUTHORS_VERSION', '4.8.1'); 16 16 define('PP_AUTHORS_FILE', 'publishpress-authors/publishpress-authors.php'); 17 17 define('PP_AUTHORS_BASE_PATH', plugin_dir_path(__DIR__ . '/publishpress-authors.php')); -
publishpress-authors/tags/4.8.1/publishpress-authors.php
r3332788 r3336632 6 6 * Author: PublishPress 7 7 * Author URI: https://publishpress.com 8 * Version: 4.8. 08 * Version: 4.8.1 9 9 * Text Domain: publishpress-authors 10 10 * Domain Path: /languages -
publishpress-authors/tags/4.8.1/readme.txt
r3332788 r3336632 247 247 248 248 == Changelog == 249 250 = [4.8.1] - 30 July 2025 = 251 252 * Fixed: PHP Fatal error: Uncaught TypeError: array_search(): Argument #2 ($haystack) must be of type array, null given, #2081 253 * Update: Add Maintenance button to create Author Categories table, #2046 254 * Update: Add a loco.xml file for Authors Pro, #2055 249 255 250 256 = [4.8.0] - 23 July 2025 = -
publishpress-authors/tags/4.8.1/src/core/Classes/Utils.php
r3208709 r3336632 633 633 $postTypes = $taxonomy->object_type; 634 634 635 if (!$postTypes || !is_array($postTypes)) { 636 return []; 637 } 638 635 639 if (($keyToUnset = array_search('customize_changeset', $postTypes)) !== false) { 636 640 unset($postTypes[$keyToUnset]); -
publishpress-authors/tags/4.8.1/src/core/Plugin.php
r3332788 r3336632 1138 1138 global $wpdb; 1139 1139 1140 $post_types = array_values(Utils::getAuthorTaxonomyPostTypes()); 1140 $post_types = array_values(Utils::get_enabled_post_types()); 1141 1142 if (empty($post_types)) { 1143 $post_types = ['post']; 1144 } 1141 1145 1142 1146 $post_types = array_map('esc_sql', $post_types); -
publishpress-authors/trunk/defines.php
r3332788 r3336632 13 13 14 14 if (!defined('PP_AUTHORS_LOADED')) { 15 define('PP_AUTHORS_VERSION', '4.8. 0');15 define('PP_AUTHORS_VERSION', '4.8.1'); 16 16 define('PP_AUTHORS_FILE', 'publishpress-authors/publishpress-authors.php'); 17 17 define('PP_AUTHORS_BASE_PATH', plugin_dir_path(__DIR__ . '/publishpress-authors.php')); -
publishpress-authors/trunk/publishpress-authors.php
r3332788 r3336632 6 6 * Author: PublishPress 7 7 * Author URI: https://publishpress.com 8 * Version: 4.8. 08 * Version: 4.8.1 9 9 * Text Domain: publishpress-authors 10 10 * Domain Path: /languages -
publishpress-authors/trunk/readme.txt
r3332788 r3336632 247 247 248 248 == Changelog == 249 250 = [4.8.1] - 30 July 2025 = 251 252 * Fixed: PHP Fatal error: Uncaught TypeError: array_search(): Argument #2 ($haystack) must be of type array, null given, #2081 253 * Update: Add Maintenance button to create Author Categories table, #2046 254 * Update: Add a loco.xml file for Authors Pro, #2055 249 255 250 256 = [4.8.0] - 23 July 2025 = -
publishpress-authors/trunk/src/core/Classes/Utils.php
r3208709 r3336632 633 633 $postTypes = $taxonomy->object_type; 634 634 635 if (!$postTypes || !is_array($postTypes)) { 636 return []; 637 } 638 635 639 if (($keyToUnset = array_search('customize_changeset', $postTypes)) !== false) { 636 640 unset($postTypes[$keyToUnset]); -
publishpress-authors/trunk/src/core/Plugin.php
r3332788 r3336632 1138 1138 global $wpdb; 1139 1139 1140 $post_types = array_values(Utils::getAuthorTaxonomyPostTypes()); 1140 $post_types = array_values(Utils::get_enabled_post_types()); 1141 1142 if (empty($post_types)) { 1143 $post_types = ['post']; 1144 } 1141 1145 1142 1146 $post_types = array_map('esc_sql', $post_types);
Note: See TracChangeset
for help on using the changeset viewer.