Changeset 2417128
- Timestamp:
- 11/12/2020 10:31:02 AM (5 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
r2416696 r2417128 6 6 Tested up to: 5.5.1 7 7 Requires PHP: 5.6 8 Stable tag: 3.0. 38 Stable tag: 3.0.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 297 297 * Fix preg_match issue in some PHP versions 298 298 299 = 3.0.4 = 300 * Fix preg_match issue in some PHP versions 301 299 302 == Upgrade Notice == 300 303 * Upgrading from version 1 to 2 can show you warnings in the admin section -
cloudimage/trunk/cloudimage.php
r2416696 r2417128 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: 3.0. 314 * Version: 3.0.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', '3.0. 3');32 define('CLOUDIMAGE_VERSION', '3.0.4'); 33 33 34 34 /** -
cloudimage/trunk/includes/class-cloudimage.php
r2416696 r2417128 83 83 $this->version = CLOUDIMAGE_VERSION; 84 84 } else { 85 $this->version = '3.0. 3';85 $this->version = '3.0.4'; 86 86 } 87 87 $this->plugin_name = 'cloudimage'; -
cloudimage/trunk/public/class-cloudimage-public.php
r2416696 r2417128 460 460 // don't do the replacement if the image is a data-uri or already a ci-src 461 461 if (!preg_match("/src=['\"]data:image/is", $imgHTML) 462 // && !preg_match("/url\s*(['\"]?data:image/is", $imgHTML)462 && !preg_match("/url\s*\(['\"]?data:image/is", $imgHTML) 463 463 && !preg_match("/ci-src=['\"].*['\"]/is", $imgHTML) 464 464 && !preg_match("/src=['\"](.*)\.svg['\"]/is", $imgHTML)
Note: See TracChangeset
for help on using the changeset viewer.