Plugin Directory

Changeset 2359802


Ignore:
Timestamp:
08/13/2020 08:03:59 AM (6 years ago)
Author:
cloudimage
Message:

Release version 2.9.4

Location:
cloudimage/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cloudimage/trunk/README.txt

    r2358800 r2359802  
    66Tested up to: 5.5.0
    77Requires PHP: 5.6
    8 Stable tag: 2.9.3
     8Stable tag: 2.9.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    278278* Compatibility checks with WordPress 5.5
    279279
     280= 2.9.4 =
     281* Fix problem for icons in dashboard in JavaScript mode and admin logged-in in some cases
     282
    280283== Upgrade Notice ==
    281284* Upgrading from version 1 to 2 can show you warnings in the admin section
  • cloudimage/trunk/cloudimage.php

    r2358800 r2359802  
    1212 * Plugin Name:       Cloudimage - Responsive Images as a Service
    1313 * Description:       The easiest way to <strong>deliver lightning fast images</strong> to your users.
    14  * Version:           2.9.3
     14 * Version:           2.9.4
    1515 * Author:            Cloudimage
    1616 * Author URI:        https://cloudimage.io
     
    3030 * Start at version 1.0.0
    3131 */
    32 define('CLOUDIMAGE_VERSION', '2.9.3');
     32define('CLOUDIMAGE_VERSION', '2.9.4');
    3333
    3434/**
  • cloudimage/trunk/includes/class-cloudimage.php

    r2358800 r2359802  
    8383            $this->version = CLOUDIMAGE_VERSION;
    8484        } else {
    85             $this->version = '2.9.3';
     85            $this->version = '2.9.4';
    8686        }
    8787        $this->plugin_name = 'cloudimage';
  • cloudimage/trunk/public/class-cloudimage-public.php

    r2318858 r2359802  
    918918        $logged_in_user = $this->cloudimage_check_logged_user();
    919919
    920         if ($this->cloudimage_use_js_powered_mode && !$logged_in_user) {
     920        # Additional check if current request is from admin, as we don't want to use JS mode in admin section
     921        $is_admin = is_admin();
     922
     923        if ($this->cloudimage_use_js_powered_mode && !$logged_in_user && !$is_admin) {
    921924            ob_start([$this, 'filter_cloudimage_the_content']);
    922925        }
Note: See TracChangeset for help on using the changeset viewer.