Plugin Directory

Changeset 3416794


Ignore:
Timestamp:
12/10/2025 09:12:02 PM (4 months ago)
Author:
searchcraft
Message:

Deploy version 1.1.3

Location:
searchcraft/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • searchcraft/trunk/admin/class-searchcraft-admin.php

    r3414637 r3416794  
    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 ) ) {
  • searchcraft/trunk/readme.txt

    r3416664 r3416794  
    55Requires at least: 5.3
    66Tested up to: 6.9
    7 Stable tag:   1.1.2
     7Stable tag:   1.1.3
    88License:      Apache 2.0
    99License URI:  LICENSE.txt
     
    7070== Changelog ==
    7171
     72= 1.1.3 =
     73* Additional bugfixes
     74
    7275= 1.1.2 =
    7376* Bugfix - option check for PublishPress authors.
  • searchcraft/trunk/searchcraft.php

    r3416664 r3416794  
    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/
     
    2727// Define plugin constants.
    2828if ( ! defined( 'SEARCHCRAFT_VERSION' ) ) {
    29     define( 'SEARCHCRAFT_VERSION', '1.1.2' );
     29    define( 'SEARCHCRAFT_VERSION', '1.1.3' );
    3030}
    3131
Note: See TracChangeset for help on using the changeset viewer.