Changeset 3416794
- Timestamp:
- 12/10/2025 09:12:02 PM (4 months ago)
- Location:
- searchcraft/trunk
- Files:
-
- 3 edited
-
admin/class-searchcraft-admin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
searchcraft.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
searchcraft/trunk/admin/class-searchcraft-admin.php
r3414637 r3416794 1744 1744 // Check if PublishPress Authors is enabled and available. 1745 1745 $use_publishpress_authors = (bool) get_option( 'searchcraft_use_publishpress_authors', false ); 1746 if ( true === $use_publishpress_authors && get_option( 'ppma_activated' ) ) {1746 if ( true === $use_publishpress_authors && defined( 'PP_AUTHORS_VERSION' ) ) { 1747 1747 $authors = get_multiple_authors( $post ); 1748 1748 if ( ! empty( $authors ) && is_array( $authors ) ) { -
searchcraft/trunk/readme.txt
r3416664 r3416794 5 5 Requires at least: 5.3 6 6 Tested up to: 6.9 7 Stable tag: 1.1. 27 Stable tag: 1.1.3 8 8 License: Apache 2.0 9 9 License URI: LICENSE.txt … … 70 70 == Changelog == 71 71 72 = 1.1.3 = 73 * Additional bugfixes 74 72 75 = 1.1.2 = 73 76 * Bugfix - option check for PublishPress authors. -
searchcraft/trunk/searchcraft.php
r3416664 r3416794 11 11 * Plugin URI: https://github.com/searchcraft-inc/searchcraft-wordpress 12 12 * Description: Bring fast, relevant search to your site. Searchcraft replaces the default search with a customizable, tunable, highly relevant search experience. 13 * Version: 1.1. 213 * Version: 1.1.3 14 14 * Author: Searchcraft, Inc. 15 15 * Author URI: https://searchcraft.io/ … … 27 27 // Define plugin constants. 28 28 if ( ! defined( 'SEARCHCRAFT_VERSION' ) ) { 29 define( 'SEARCHCRAFT_VERSION', '1.1. 2' );29 define( 'SEARCHCRAFT_VERSION', '1.1.3' ); 30 30 } 31 31
Note: See TracChangeset
for help on using the changeset viewer.