Changeset 650155
- Timestamp:
- 01/09/2013 10:05:38 AM (13 years ago)
- Location:
- hotscot-page-gallery
- Files:
-
- 6 added
- 3 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/delete.png (added)
-
tags/1.0.1/hotscot-page-gallery.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/scripts.js (added)
-
tags/1.0.1/styles.css (added)
-
trunk/hotscot-page-gallery.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/scripts.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hotscot-page-gallery/trunk/hotscot-page-gallery.php
r507688 r650155 3 3 Plugin Name: Hotscot Page Gallery 4 4 Description: Hotscot Page Gallery 5 Version: 1.0. 05 Version: 1.0.1 6 6 Author: Hotscot 7 7 … … 70 70 global $post; 71 71 $tempStr = ''; 72 if( $post->ID){72 if(isset($post->ID) && $post->ID){ 73 73 $items = get_post_meta($post->ID, '_hpg_items', true); 74 74 if(strpos($items,"\n")!=0){ … … 86 86 function hpg_paint_image($itm){ 87 87 $strtmp = ''; 88 if(strpos( $itm,"||")!=0){88 if(strpos("**" . $itm,"||")!=0){ 89 89 $itm = str_ireplace("\r","",$itm); 90 90 $itmFields = explode("||",$itm); -
hotscot-page-gallery/trunk/readme.txt
r507696 r650155 31 31 Init 32 32 33 1.0.1 34 ======= 35 Fixed a few things to fit with 3.5 36 33 37 == Upgrade Notice == 34 38 None -
hotscot-page-gallery/trunk/scripts.js
r507688 r650155 19 19 large = jQuery('a','<div>' + html + '</div>').attr('href'); 20 20 title = jQuery('img','<div>' + html + '</div>').attr('title'); 21 if(!title) title = jQuery('img','<div>' + html + '</div>').attr('alt'); 21 22 22 23 if(!large) large = '';
Note: See TracChangeset
for help on using the changeset viewer.