Changeset 2780745
- Timestamp:
- 09/06/2022 02:19:49 PM (4 years ago)
- Location:
- easytranslate/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
admin/class-easy-translate-api-service.php (modified) (1 diff)
-
admin/class-easy-translate-translation-list.php (modified) (1 diff)
-
easy-translate.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easytranslate/trunk/README.txt
r2772023 r2780745 5 5 Requires at least: 4.7 6 6 Tested up to: 6.0 7 Stable tag: 4. 67 Stable tag: 4.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
easytranslate/trunk/admin/class-easy-translate-api-service.php
r2679889 r2780745 155 155 156 156 /** 157 * Wrapper method for Word press function wp_remote_get.157 * Wrapper method for WordPress function wp_remote_get. 158 158 * 159 159 * @param $url -
easytranslate/trunk/admin/class-easy-translate-translation-list.php
r2772023 r2780745 449 449 $update = ''; 450 450 if ($post_title) { 451 $update = ', post_title="' . esc_sql($post_title) . '"';451 $update .= ', post_title="' . esc_sql($post_title) . '"'; 452 452 } 453 453 if ($post_excerpt) { 454 $update = ', post_excerpt="' . esc_sql($post_excerpt) . '"';454 $update .= ', post_excerpt="' . esc_sql($post_excerpt) . '"'; 455 455 } 456 456 -
easytranslate/trunk/easy-translate.php
r2772023 r2780745 15 15 * Plugin URI: https://www.easytranslate.com/en/integrations/cms/wordpress-plugin/ 16 16 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area. 17 * Version: 1.7. 317 * Version: 1.7.4 18 18 * Author: EasyTranslate 19 19 * Author URI: https://easytranslate.com … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define('EASY_TRANSLATE_VERSION', '1.7. 3');36 define('EASY_TRANSLATE_VERSION', '1.7.4'); 37 37 38 38 /**
Note: See TracChangeset
for help on using the changeset viewer.