Changeset 3159890
- Timestamp:
- 09/30/2024 01:38:46 PM (18 months ago)
- Location:
- mailify
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.16 (copied) (copied from mailify/trunk)
-
tags/1.4.16/class.sarbacane.php (modified) (1 diff)
-
tags/1.4.16/readme.txt (modified) (3 diffs)
-
tags/1.4.16/sarbacane.php (modified) (1 diff)
-
trunk/class.sarbacane.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/sarbacane.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mailify/tags/1.4.16/class.sarbacane.php
r2814115 r3159890 375 375 private function sarbacanedesktop_get_all_deleted_users( $last_call_date ) { 376 376 global $wpdb; 377 $sql = " 378 SELECT `user_email` 379 FROM `{$wpdb->prefix}sd_updates` AS `wsu` 380 WHERE `wsu`.`action` = 'U' AND `wsu`.`time` >= %s"; 381 $deleted_users = $wpdb->get_results( $wpdb->prepare( $sql, $last_call_date ) ); 377 $deleted_users = array(); 378 if ( $last_call_date != '' ) { 379 $sql = " 380 SELECT `user_email` 381 FROM `{$wpdb->prefix}sd_updates` 382 WHERE `action` = 'U' 383 AND `time` >= %s"; 384 $deleted_users = $wpdb->get_results( $wpdb->prepare( $sql, $last_call_date ) ); 385 } 382 386 return $deleted_users; 383 387 } -
mailify/tags/1.4.16/readme.txt
r2814139 r3159890 3 3 Tags: marketing, mail, email, mailing 4 4 Requires at least: 4.0 5 Tested up to: 6. 15 Tested up to: 6.6 6 6 License: GPLv2 or later 7 Stable tag: 1.4.1 57 Stable tag: 1.4.16 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 … … 87 87 88 88 == Changelog == 89 90 = 1.4.16 = 91 Compatibility up to WordPress 6.6. 89 92 90 93 = 1.4.15 = … … 153 156 = Spanish = 154 157 158 = 1.4.16 = 159 Compatibilidad hasta WordPress 6.6. 160 155 161 = 1.4.15 = 156 162 Compatibilidad hasta WordPress 6.1. -
mailify/tags/1.4.16/sarbacane.php
r2814115 r3159890 5 5 Description: This plugin allows you to synchronize your WordPress data in Mailify 6 6 Author: Sarbacane Software 7 Version: 1.4.1 57 Version: 1.4.16 8 8 Author URI: http://mailify.com/?utm_source=module-wordpress&utm_medium=plugin&utm_content=lien-sarbacane&utm_campaign=wordpress 9 9 Text Domain: mailify -
mailify/trunk/class.sarbacane.php
r2814115 r3159890 375 375 private function sarbacanedesktop_get_all_deleted_users( $last_call_date ) { 376 376 global $wpdb; 377 $sql = " 378 SELECT `user_email` 379 FROM `{$wpdb->prefix}sd_updates` AS `wsu` 380 WHERE `wsu`.`action` = 'U' AND `wsu`.`time` >= %s"; 381 $deleted_users = $wpdb->get_results( $wpdb->prepare( $sql, $last_call_date ) ); 377 $deleted_users = array(); 378 if ( $last_call_date != '' ) { 379 $sql = " 380 SELECT `user_email` 381 FROM `{$wpdb->prefix}sd_updates` 382 WHERE `action` = 'U' 383 AND `time` >= %s"; 384 $deleted_users = $wpdb->get_results( $wpdb->prepare( $sql, $last_call_date ) ); 385 } 382 386 return $deleted_users; 383 387 } -
mailify/trunk/readme.txt
r2814139 r3159890 3 3 Tags: marketing, mail, email, mailing 4 4 Requires at least: 4.0 5 Tested up to: 6. 15 Tested up to: 6.6 6 6 License: GPLv2 or later 7 Stable tag: 1.4.1 57 Stable tag: 1.4.16 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 … … 87 87 88 88 == Changelog == 89 90 = 1.4.16 = 91 Compatibility up to WordPress 6.6. 89 92 90 93 = 1.4.15 = … … 153 156 = Spanish = 154 157 158 = 1.4.16 = 159 Compatibilidad hasta WordPress 6.6. 160 155 161 = 1.4.15 = 156 162 Compatibilidad hasta WordPress 6.1. -
mailify/trunk/sarbacane.php
r2814115 r3159890 5 5 Description: This plugin allows you to synchronize your WordPress data in Mailify 6 6 Author: Sarbacane Software 7 Version: 1.4.1 57 Version: 1.4.16 8 8 Author URI: http://mailify.com/?utm_source=module-wordpress&utm_medium=plugin&utm_content=lien-sarbacane&utm_campaign=wordpress 9 9 Text Domain: mailify
Note: See TracChangeset
for help on using the changeset viewer.