Changeset 3150049
- Timestamp:
- 09/11/2024 12:07:52 PM (19 months ago)
- Location:
- ai-translate-for-polylang
- Files:
-
- 8 added
- 2 edited
-
tags/1.0.9 (added)
-
tags/1.0.9/ai-translate-polylang.php (added)
-
tags/1.0.9/inc (added)
-
tags/1.0.9/inc/open-ai (added)
-
tags/1.0.9/inc/open-ai/OpenAi.php (added)
-
tags/1.0.9/inc/open-ai/Url.php (added)
-
tags/1.0.9/inc/settingslib.php (added)
-
tags/1.0.9/readme.txt (added)
-
trunk/ai-translate-polylang.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-translate-for-polylang/trunk/ai-translate-polylang.php
r3135951 r3150049 4 4 Plugin URI: https://wordpress.org/plugins/ai-translate-polylang/ 5 5 Description: Add auto AI translation caperbility to Polylang 6 Version: 1.0. 86 Version: 1.0.9 7 7 Author: James Low 8 8 Author URI: http://jameslow.com … … 131 131 public static function translate_field($original, $field = '', $meta = false) { 132 132 $translation = null; 133 if (get_option('ai_translate_new_post', '0') == '1' && $_GET['new_lang'] && isset($_GET['from_post'])) {133 if (get_option('ai_translate_new_post', '0') == '1' && isset($_GET['new_lang']) && $_GET['new_lang'] && isset($_GET['from_post'])) { 134 134 if (!$original || $original != '') { 135 135 $to = sanitize_key($_GET['new_lang']); -
ai-translate-for-polylang/trunk/readme.txt
r3135951 r3150049 5 5 Requires at least: 3.0 6 6 Tested up to: 6.6.1 7 Stable tag: 1.0. 87 Stable tag: 1.0.9 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 34 34 == Changelog == 35 35 36 = 1.0.9 = 37 * Fix PHP 8.X warning 38 36 39 = 1.0.8 = 37 40 * Correctly set author in translated post
Note: See TracChangeset
for help on using the changeset viewer.