Plugin Directory

Changeset 3392992


Ignore:
Timestamp:
11/10/2025 01:57:09 PM (4 months ago)
Author:
easywpstuff
Message:

update to 1.1.2

Location:
easy-search-replace
Files:
12 added
2 edited

Legend:

Unmodified
Added
Removed
  • easy-search-replace/trunk/easy-search-replace.php

    r3392915 r3392992  
    33 * Plugin Name: Easy Search Replace
    44 * Description: Easy Search Replace is a plugin that allows you to search and replace text within your WordPress.
    5  * Version: 1.1.1
     5 * Version: 1.1.2
    66 * Author: Uzair
    77 * Author URI: https://easywpstuff.com
     
    4040    $current_post_id = is_singular() && isset( $post->ID ) ? $post->ID : null;
    4141    $current_type    = is_singular() && isset( $post->post_type ) ? $post->post_type : null;
     42    if ( is_home() && get_option( 'page_for_posts' ) ) {
     43    $current_post_id = (int) get_option( 'page_for_posts' );
     44    $current_type = 'page';
     45    }
    4246    $current_url     = home_url( add_query_arg( [], $_SERVER['REQUEST_URI'] ) );
    4347
  • easy-search-replace/trunk/readme.txt

    r3392912 r3392992  
    66Tested up to: 6.8
    77Requires PHP: 7.2
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    107107
    108108== Changelog ==
     109= 1.1.2 =
     110* bugs fixed
    109111= 1.1.1 =
    110112* Fixed advanced options bug
     
    126128
    127129== Upgrade Notice ==
    128 **1.1.1** – Fixed advanced options issue
     130**1.1.2** – bugs fixed
Note: See TracChangeset for help on using the changeset viewer.