Changeset 2359802
- Timestamp:
- 08/13/2020 08:03:59 AM (6 years ago)
- Location:
- cloudimage/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
cloudimage.php (modified) (2 diffs)
-
includes/class-cloudimage.php (modified) (1 diff)
-
public/class-cloudimage-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cloudimage/trunk/README.txt
r2358800 r2359802 6 6 Tested up to: 5.5.0 7 7 Requires PHP: 5.6 8 Stable tag: 2.9. 38 Stable tag: 2.9.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 278 278 * Compatibility checks with WordPress 5.5 279 279 280 = 2.9.4 = 281 * Fix problem for icons in dashboard in JavaScript mode and admin logged-in in some cases 282 280 283 == Upgrade Notice == 281 284 * Upgrading from version 1 to 2 can show you warnings in the admin section -
cloudimage/trunk/cloudimage.php
r2358800 r2359802 12 12 * Plugin Name: Cloudimage - Responsive Images as a Service 13 13 * Description: The easiest way to <strong>deliver lightning fast images</strong> to your users. 14 * Version: 2.9. 314 * Version: 2.9.4 15 15 * Author: Cloudimage 16 16 * Author URI: https://cloudimage.io … … 30 30 * Start at version 1.0.0 31 31 */ 32 define('CLOUDIMAGE_VERSION', '2.9. 3');32 define('CLOUDIMAGE_VERSION', '2.9.4'); 33 33 34 34 /** -
cloudimage/trunk/includes/class-cloudimage.php
r2358800 r2359802 83 83 $this->version = CLOUDIMAGE_VERSION; 84 84 } else { 85 $this->version = '2.9. 3';85 $this->version = '2.9.4'; 86 86 } 87 87 $this->plugin_name = 'cloudimage'; -
cloudimage/trunk/public/class-cloudimage-public.php
r2318858 r2359802 918 918 $logged_in_user = $this->cloudimage_check_logged_user(); 919 919 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) { 921 924 ob_start([$this, 'filter_cloudimage_the_content']); 922 925 }
Note: See TracChangeset
for help on using the changeset viewer.