Skip to content

Commit bf76451

Browse files
authored
Merge pull request #31 from searchcraft-inc/development
1.1.3
2 parents 35cdc07 + c02b4bc commit bf76451

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

admin/class-searchcraft-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1743,7 +1743,7 @@ public function searchcraft_add_documents( $posts ) {
17431743

17441744
// Check if PublishPress Authors is enabled and available.
17451745
$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' ) ) {
17471747
$authors = get_multiple_authors( $post );
17481748
if ( ! empty( $authors ) && is_array( $authors ) ) {
17491749
// Use all authors from PublishPress Authors.

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: searchcraft
44
Tags: search, fuzzy search, better search, instant search, search replacement
55
Requires at least: 5.3
66
Tested up to: 6.9
7-
Stable tag: 1.1.2
7+
Stable tag: 1.1.3
88
License: Apache 2.0
99
License URI: LICENSE.txt
1010

@@ -69,6 +69,9 @@ Searchcraft Cloud customers may also reach out via our Discord server for assist
6969

7070
== Changelog ==
7171

72+
= 1.1.3 =
73+
* Additional bugfixes
74+
7275
= 1.1.2 =
7376
* Bugfix - option check for PublishPress authors.
7477

searchcraft.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Searchcraft
1111
* Plugin URI: https://github.com/searchcraft-inc/searchcraft-wordpress
1212
* 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.2
13+
* Version: 1.1.3
1414
* Author: Searchcraft, Inc.
1515
* Author URI: https://searchcraft.io/
1616
* License: Apache 2.0
@@ -26,7 +26,7 @@
2626

2727
// Define plugin constants.
2828
if ( ! defined( 'SEARCHCRAFT_VERSION' ) ) {
29-
define( 'SEARCHCRAFT_VERSION', '1.1.2' );
29+
define( 'SEARCHCRAFT_VERSION', '1.1.3' );
3030
}
3131

3232
if ( ! defined( 'SEARCHCRAFT_PLUGIN_FILE' ) ) {

0 commit comments

Comments
 (0)