Changeset 628102
- Timestamp:
- 11/21/2012 11:43:02 AM (13 years ago)
- Location:
- wp-imagezoom
- Files:
-
- 28 added
- 2 edited
-
tags/1.0.6 (added)
-
tags/1.0.6/div_img.php (added)
-
tags/1.0.6/download.php (added)
-
tags/1.0.6/imgs (added)
-
tags/1.0.6/imgs/btn_dl.png (added)
-
tags/1.0.6/imgs/btn_map.png (added)
-
tags/1.0.6/imgs/btn_minus.png (added)
-
tags/1.0.6/imgs/btn_plus.png (added)
-
tags/1.0.6/imgs/btn_reset.png (added)
-
tags/1.0.6/imgs/prg_1.png (added)
-
tags/1.0.6/imgs/prg_2.png (added)
-
tags/1.0.6/imgs/prg_3.png (added)
-
tags/1.0.6/imgs/prg_4.png (added)
-
tags/1.0.6/imgs/prg_5.png (added)
-
tags/1.0.6/js (added)
-
tags/1.0.6/js/jquery-1.4.2.min.js (added)
-
tags/1.0.6/js/jquery-ui-1.8.2.custom.min.js (added)
-
tags/1.0.6/read_defaults.php (added)
-
tags/1.0.6/readme.txt (added)
-
tags/1.0.6/screenshot-1.jpg (added)
-
tags/1.0.6/screenshot-2.jpg (added)
-
tags/1.0.6/set_document_root.php (added)
-
tags/1.0.6/work (added)
-
tags/1.0.6/wp-imagezoom.css (added)
-
tags/1.0.6/wp-imagezoom.php (added)
-
tags/1.0.6/zoom-config.php (added)
-
tags/1.0.6/zoom.js (added)
-
tags/1.0.6/zoom.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-imagezoom.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-imagezoom/trunk/readme.txt
r562139 r628102 4 4 Tags: image,images,large,big,zoom,zooming,pan,panning,imagezoom,jpeg,jpg,detail,ajax,photo,photos,photograph,photography,foto,fotos,gallery,picture,magnify 5 5 Requires at least: 3.2.0 6 Tested up to: 3. 47 Stable tag: 1.0. 56 Tested up to: 3.5 7 Stable tag: 1.0.6 8 8 9 9 Zooming and panning large images similar to google maps. … … 41 41 == Changelog == 42 42 43 = 1.0.6 = 44 * Solved the problem that image was not shown when the link of the image was the attachment post URL. 45 43 46 = 1.0.5 = 44 47 * Solved a security problem. -
wp-imagezoom/trunk/wp-imagezoom.php
r562139 r628102 4 4 Plugin URI: http://tempspace.net/plugins/?page_id=74 5 5 Description: Zooming and panning large images similar to google maps. 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: Atsushi Ueda 8 8 Author URI: http://atsushiueda.com/wtest … … 162 162 163 163 $url = substr($str, $pos+$find+6, $find2); 164 $url_org = $url; 165 $find_att = strpos($url, "attachment_id="); 166 if ($find_att > 1) { 167 $attid = substr($url, $find_att+14); 168 $result = $wpdb->get_results("select guid from ".$wpdb->prefix."posts where ID=".$attid); 169 $url = $result[0]->guid; 170 } 164 171 165 172 $result = $wpdb->get_results("select imgid ". … … 220 227 221 228 $pos += $find+6; 222 $pos += strlen($url );229 $pos += strlen($url_org); 223 230 224 231 }
Note: See TracChangeset
for help on using the changeset viewer.