Changeset 3006188
- Timestamp:
- 12/06/2023 12:51:11 PM (2 years ago)
- Location:
- surferseo
- Files:
-
- 10 edited
- 1 copied
-
tags/1.3.4.395 (copied) (copied from surferseo/trunk)
-
tags/1.3.4.395/includes/surfer/class-content-importer.php (modified) (1 diff)
-
tags/1.3.4.395/includes/surfer/class-surfer.php (modified) (1 diff)
-
tags/1.3.4.395/includes/surfer/gsc/class-surfer-gsc-drop-monitor.php (modified) (2 diffs)
-
tags/1.3.4.395/readme.txt (modified) (3 diffs)
-
tags/1.3.4.395/surferseo.php (modified) (2 diffs)
-
trunk/includes/surfer/class-content-importer.php (modified) (1 diff)
-
trunk/includes/surfer/class-surfer.php (modified) (1 diff)
-
trunk/includes/surfer/gsc/class-surfer-gsc-drop-monitor.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/surferseo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
surferseo/tags/1.3.4.395/includes/surfer/class-content-importer.php
r2996223 r3006188 412 412 $h1_text = $this->get_inner_html( $h1 ); 413 413 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 ); 415 417 } 416 418 } -
surferseo/tags/1.3.4.395/includes/surfer/class-surfer.php
r2996223 r3006188 927 927 private function handle_surfer_errors( $code, $result ) { 928 928 $error_message = wp_remote_retrieve_body( $result ); 929 $response = $code; 929 930 930 931 if ( 401 === $code ) { -
surferseo/tags/1.3.4.395/includes/surfer/gsc/class-surfer-gsc-drop-monitor.php
r2996223 r3006188 57 57 * Gather single chunk of data from GSC. 58 58 */ 59 p rivatefunction parse_data_bunch_for_postion_monitor() {59 public function parse_data_bunch_for_postion_monitor() { 60 60 61 61 // Do not run if not connected to GSC. … … 305 305 306 306 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 ); 308 308 } 309 309 -
surferseo/tags/1.3.4.395/readme.txt
r2996223 r3006188 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.4.1 7 Stable tag: 1.3. 3.3797 Stable tag: 1.3.4.395 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 86 86 87 87 == Changelog == 88 89 = 1.3.4 = 90 * Fix: Classic editor title issue 91 * Fix: CRON execution issue 88 92 89 93 = 1.3.3 = … … 155 159 == Upgrade Notice == 156 160 161 = 1.3.4 = 162 * Fix: Classic editor title issue 163 * Fix: CRON execution issue 164 157 165 = 1.3.3 = 158 166 * FEATURE: Option to force choose parser from config -
surferseo/tags/1.3.4.395/surferseo.php
r2996223 r3006188 4 4 * Plugin URI: https://wordpress.org/plugins/surferseo/ 5 5 * Description: Create content that ranks with Surfer in WordPress 6 * Version: 1.3. 3.3796 * Version: 1.3.4.395 7 7 * Author: Surfer 8 8 * Author URI: https://surferseo.com … … 23 23 24 24 if ( ! defined( 'SURFER_VERSION' ) ) { 25 define( 'SURFER_VERSION', '1.3. 3.379' );25 define( 'SURFER_VERSION', '1.3.4.395' ); 26 26 } 27 27 -
surferseo/trunk/includes/surfer/class-content-importer.php
r2996223 r3006188 412 412 $h1_text = $this->get_inner_html( $h1 ); 413 413 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 ); 415 417 } 416 418 } -
surferseo/trunk/includes/surfer/class-surfer.php
r2996223 r3006188 927 927 private function handle_surfer_errors( $code, $result ) { 928 928 $error_message = wp_remote_retrieve_body( $result ); 929 $response = $code; 929 930 930 931 if ( 401 === $code ) { -
surferseo/trunk/includes/surfer/gsc/class-surfer-gsc-drop-monitor.php
r2996223 r3006188 57 57 * Gather single chunk of data from GSC. 58 58 */ 59 p rivatefunction parse_data_bunch_for_postion_monitor() {59 public function parse_data_bunch_for_postion_monitor() { 60 60 61 61 // Do not run if not connected to GSC. … … 305 305 306 306 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 ); 308 308 } 309 309 -
surferseo/trunk/readme.txt
r2996223 r3006188 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.4.1 7 Stable tag: 1.3. 3.3797 Stable tag: 1.3.4.395 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 86 86 87 87 == Changelog == 88 89 = 1.3.4 = 90 * Fix: Classic editor title issue 91 * Fix: CRON execution issue 88 92 89 93 = 1.3.3 = … … 155 159 == Upgrade Notice == 156 160 161 = 1.3.4 = 162 * Fix: Classic editor title issue 163 * Fix: CRON execution issue 164 157 165 = 1.3.3 = 158 166 * FEATURE: Option to force choose parser from config -
surferseo/trunk/surferseo.php
r2996223 r3006188 4 4 * Plugin URI: https://wordpress.org/plugins/surferseo/ 5 5 * Description: Create content that ranks with Surfer in WordPress 6 * Version: 1.3. 3.3796 * Version: 1.3.4.395 7 7 * Author: Surfer 8 8 * Author URI: https://surferseo.com … … 23 23 24 24 if ( ! defined( 'SURFER_VERSION' ) ) { 25 define( 'SURFER_VERSION', '1.3. 3.379' );25 define( 'SURFER_VERSION', '1.3.4.395' ); 26 26 } 27 27
Note: See TracChangeset
for help on using the changeset viewer.