Plugin Directory

Changeset 3006188


Ignore:
Timestamp:
12/06/2023 12:51:11 PM (2 years ago)
Author:
surferseo
Message:

Release 1.3.4.395.

Location:
surferseo
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • surferseo/tags/1.3.4.395/includes/surfer/class-content-importer.php

    r2996223 r3006188  
    412412            $h1_text = $this->get_inner_html( $h1 );
    413413            if ( wp_strip_all_tags( $h1_text ) === $this->title ) {
    414                 $content = str_replace( $h1, '', $content );
     414                // @codingStandardsIgnoreLine
     415                $h1_string = $h1->ownerDocument->saveXML( $h1 );
     416                $content   = str_replace( $h1_string, '', $content );
    415417            }
    416418        }
  • surferseo/tags/1.3.4.395/includes/surfer/class-surfer.php

    r2996223 r3006188  
    927927    private function handle_surfer_errors( $code, $result ) {
    928928        $error_message = wp_remote_retrieve_body( $result );
     929        $response = $code;
    929930
    930931        if ( 401 === $code ) {
  • surferseo/tags/1.3.4.395/includes/surfer/gsc/class-surfer-gsc-drop-monitor.php

    r2996223 r3006188  
    5757     * Gather single chunk of data from GSC.
    5858     */
    59     private function parse_data_bunch_for_postion_monitor() {
     59    public function parse_data_bunch_for_postion_monitor() {
    6060
    6161        // Do not run if not connected to GSC.
     
    305305
    306306        wp_mail( admin_url(), $title, $message, $headers );
    307         set_transient( 'surfer_gsc_weekly_report_email_sent', gmdate( 'm-d-Y H:i:s' ), 7 * DAY_IN_SECONDS );
     307        set_transient( 'surfer_gsc_weekly_report_email_sent', gmdate( 'm-d-Y H:i:s' ), 6 * DAY_IN_SECONDS );
    308308    }
    309309
  • surferseo/tags/1.3.4.395/readme.txt

    r2996223 r3006188  
    55Requires PHP: 7.4
    66Tested up to: 6.4.1
    7 Stable tag: 1.3.3.379
     7Stable tag: 1.3.4.395
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8686
    8787== Changelog ==
     88
     89= 1.3.4 =
     90* Fix: Classic editor title issue
     91* Fix: CRON execution issue
    8892
    8993= 1.3.3 =
     
    155159== Upgrade Notice ==
    156160
     161= 1.3.4 =
     162* Fix: Classic editor title issue
     163* Fix: CRON execution issue
     164
    157165= 1.3.3 =
    158166* FEATURE: Option to force choose parser from config
  • surferseo/tags/1.3.4.395/surferseo.php

    r2996223 r3006188  
    44 * Plugin URI: https://wordpress.org/plugins/surferseo/
    55 * Description: Create content that ranks with Surfer in WordPress
    6  * Version: 1.3.3.379
     6 * Version: 1.3.4.395
    77 * Author: Surfer
    88 * Author URI: https://surferseo.com
     
    2323
    2424if ( ! defined( 'SURFER_VERSION' ) ) {
    25     define( 'SURFER_VERSION', '1.3.3.379' );
     25    define( 'SURFER_VERSION', '1.3.4.395' );
    2626}
    2727
  • surferseo/trunk/includes/surfer/class-content-importer.php

    r2996223 r3006188  
    412412            $h1_text = $this->get_inner_html( $h1 );
    413413            if ( wp_strip_all_tags( $h1_text ) === $this->title ) {
    414                 $content = str_replace( $h1, '', $content );
     414                // @codingStandardsIgnoreLine
     415                $h1_string = $h1->ownerDocument->saveXML( $h1 );
     416                $content   = str_replace( $h1_string, '', $content );
    415417            }
    416418        }
  • surferseo/trunk/includes/surfer/class-surfer.php

    r2996223 r3006188  
    927927    private function handle_surfer_errors( $code, $result ) {
    928928        $error_message = wp_remote_retrieve_body( $result );
     929        $response = $code;
    929930
    930931        if ( 401 === $code ) {
  • surferseo/trunk/includes/surfer/gsc/class-surfer-gsc-drop-monitor.php

    r2996223 r3006188  
    5757     * Gather single chunk of data from GSC.
    5858     */
    59     private function parse_data_bunch_for_postion_monitor() {
     59    public function parse_data_bunch_for_postion_monitor() {
    6060
    6161        // Do not run if not connected to GSC.
     
    305305
    306306        wp_mail( admin_url(), $title, $message, $headers );
    307         set_transient( 'surfer_gsc_weekly_report_email_sent', gmdate( 'm-d-Y H:i:s' ), 7 * DAY_IN_SECONDS );
     307        set_transient( 'surfer_gsc_weekly_report_email_sent', gmdate( 'm-d-Y H:i:s' ), 6 * DAY_IN_SECONDS );
    308308    }
    309309
  • surferseo/trunk/readme.txt

    r2996223 r3006188  
    55Requires PHP: 7.4
    66Tested up to: 6.4.1
    7 Stable tag: 1.3.3.379
     7Stable tag: 1.3.4.395
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8686
    8787== Changelog ==
     88
     89= 1.3.4 =
     90* Fix: Classic editor title issue
     91* Fix: CRON execution issue
    8892
    8993= 1.3.3 =
     
    155159== Upgrade Notice ==
    156160
     161= 1.3.4 =
     162* Fix: Classic editor title issue
     163* Fix: CRON execution issue
     164
    157165= 1.3.3 =
    158166* FEATURE: Option to force choose parser from config
  • surferseo/trunk/surferseo.php

    r2996223 r3006188  
    44 * Plugin URI: https://wordpress.org/plugins/surferseo/
    55 * Description: Create content that ranks with Surfer in WordPress
    6  * Version: 1.3.3.379
     6 * Version: 1.3.4.395
    77 * Author: Surfer
    88 * Author URI: https://surferseo.com
     
    2323
    2424if ( ! defined( 'SURFER_VERSION' ) ) {
    25     define( 'SURFER_VERSION', '1.3.3.379' );
     25    define( 'SURFER_VERSION', '1.3.4.395' );
    2626}
    2727
Note: See TracChangeset for help on using the changeset viewer.