Changeset 848885
- Timestamp:
- 01/31/2014 04:31:58 PM (12 years ago)
- Location:
- amtythumb
- Files:
-
- 11 added
- 3 edited
-
tags/4.1.2 (added)
-
tags/4.1.2/amtyThumb.php (added)
-
tags/4.1.2/amtyThumbAdminFunction.php (added)
-
tags/4.1.2/amtyThumbAdminPg.php (added)
-
tags/4.1.2/amtytextthumb.gif (added)
-
tags/4.1.2/cacheFunction.php (added)
-
tags/4.1.2/invalid.gif (added)
-
tags/4.1.2/lead-img.php (added)
-
tags/4.1.2/readme.txt (added)
-
tags/4.1.2/supportingFunction.php (added)
-
tags/4.1.2/videothumb.php (added)
-
trunk/amtyThumb.php (modified) (1 diff)
-
trunk/cacheFunction.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
amtythumb/trunk/amtyThumb.php
r848871 r848885 6 6 7 7 Author: Amit Gupta 8 Version: 4.1. 18 Version: 4.1.2 9 9 Author URI: http://article-stack.com/ 10 10 */ -
amtythumb/trunk/cacheFunction.php
r848861 r848885 63 63 function amty_putIntoImageCache($postId,$force=0,$default_img=''){ 64 64 $metaVal = get_post_meta($postId,'amtyThumb',true); 65 $imgExt = ' gif';65 $imgExt = '.gif'; 66 66 if($force == 0 && $metaVal != ''){ 67 67 //do nothing … … 80 80 if($imgExt != ''){ 81 81 $imageString = file_get_contents($img); 82 $img = getAmtyThumbCachePath() . $postId . "." .$imgExt;82 $img = getAmtyThumbCachePath() . $postId . $imgExt; 83 83 file_put_contents($img,$imageString); 84 84 }else{ -
amtythumb/trunk/readme.txt
r848871 r848885 5 5 Requires at least: 2.5 6 6 Tested up to: 3.5 7 Stable tag: 4.1. 17 Stable tag: 4.1.2 8 8 9 9 Fetch first image of a post and Resize it. Otherwise resize an image. … … 94 94 == Changelog == 95 95 96 = 4.1.2 = 97 * bug fix : there were 2 dots before file extension 98 96 99 = 4.1.1 = 97 100 * bug fix : auto cache clear on plugin update is failing … … 164 167 == Upgrade Notice == 165 168 166 = 4.1. 1=169 = 4.1.2 = 167 170 * perofrmance improvment 168 171 * you require to clear soft cache from plugin admin page after installing the plugin
Note: See TracChangeset
for help on using the changeset viewer.