Plugin Directory

Changeset 2780745


Ignore:
Timestamp:
09/06/2022 02:19:49 PM (4 years ago)
Author:
frpet
Message:

Concatanate the query instead of assigning

Location:
easytranslate/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • easytranslate/trunk/README.txt

    r2772023 r2780745  
    55Requires at least: 4.7
    66Tested up to: 6.0
    7 Stable tag: 4.6
     7Stable tag: 4.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • easytranslate/trunk/admin/class-easy-translate-api-service.php

    r2679889 r2780745  
    155155
    156156    /**
    157      * Wrapper method for Wordpress function wp_remote_get.
     157     * Wrapper method for WordPress function wp_remote_get.
    158158     *
    159159     * @param $url
  • easytranslate/trunk/admin/class-easy-translate-translation-list.php

    r2772023 r2780745  
    449449        $update = '';
    450450        if ($post_title) {
    451             $update = ', post_title="' . esc_sql($post_title) . '"';
     451            $update .= ', post_title="' . esc_sql($post_title) . '"';
    452452        }
    453453        if ($post_excerpt) {
    454             $update = ', post_excerpt="' . esc_sql($post_excerpt) . '"';
     454            $update .= ', post_excerpt="' . esc_sql($post_excerpt) . '"';
    455455        }
    456456
  • easytranslate/trunk/easy-translate.php

    r2772023 r2780745  
    1515 * Plugin URI:        https://www.easytranslate.com/en/integrations/cms/wordpress-plugin/
    1616 * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    17  * Version:           1.7.3
     17 * Version:           1.7.4
    1818 * Author:            EasyTranslate
    1919 * Author URI:        https://easytranslate.com
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define('EASY_TRANSLATE_VERSION', '1.7.3');
     36define('EASY_TRANSLATE_VERSION', '1.7.4');
    3737
    3838/**
Note: See TracChangeset for help on using the changeset viewer.