Changeset 1543509
- Timestamp:
- 11/30/2016 05:21:43 PM (9 years ago)
- Location:
- smart-image-loader/trunk
- Files:
-
- 3 edited
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
smart_image_loader.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
smart-image-loader/trunk/plugin.php
r1492706 r1543509 4 4 Plugin URI: https://wordpress.org/plugins/smart-image-loader 5 5 Description: Load images visible at page load ('above the fold') first for a fast page loading impression. Optional lazy loading for images 'below the fold'. 6 Version: 0.4. 76 Version: 0.4.8 7 7 Text Domain: smart-image-loader 8 8 Author: Bayer und Preuss … … 44 44 function get_wrapped_html( $html_string ) 45 45 { 46 if ( preg_match('/(?i)msie [1-6]/', $_SERVER['HTTP_USER_AGENT']) || strlen($html_string) === 0 )46 if ( isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/(?i)msie [1-6]/', $_SERVER['HTTP_USER_AGENT']) || strlen($html_string) === 0 ) 47 47 return $html_string; 48 48 -
smart-image-loader/trunk/readme.txt
r1496256 r1543509 5 5 Requires at least: 3.8.3 6 6 Tested up to: 4.6.1 7 Stable tag: 0.4. 77 Stable tag: 0.4.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 32 33 33 == Changelog == 34 35 = 0.4.8 = 36 * fixed error server would throw when HTTP_USER_AGENT isn't sent 34 37 35 38 = 0.4.7 = -
smart-image-loader/trunk/smart_image_loader.js
r1492707 r1543509 1 1 (function($) { 2 2 3 // Version: 0.4. 73 // Version: 0.4.8 4 4 5 5 "use strict";
Note: See TracChangeset
for help on using the changeset viewer.