Changeset 1912452
- Timestamp:
- 07/20/2018 05:16:59 PM (8 years ago)
- Location:
- sponsors-carousel/trunk
- Files:
-
- 3 edited
-
class-sponsors-carousel.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
sponsors-carousel.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sponsors-carousel/trunk/class-sponsors-carousel.php
r1848636 r1912452 106 106 } 107 107 update_option( 'sponsors-carousel-' . $this->id, serialize( $this ) ); 108 return TRUE; 108 109 } 109 110 … … 282 283 if ( $link <> '' ) { 283 284 $output .= '<li><a ' . ( $this->target ? ' target="_blank" ' : '' ); 284 $output .= ' id="sponsors_carousel_item-"' . $i . '"href="' . $link . '" class="jcarousel-item">';285 $output .= ' href="' . $link . '" class="jcarousel-item">'; 285 286 $output .= '<img src="' . $img['src'] . '" ' . ( $this->showtitles ? ( ' title="' . $img['title'] . '"' ) : '' ) . '>'; 286 287 $output .= '</a></li>'; -
sponsors-carousel/trunk/readme.txt
r1882442 r1912452 64 64 * 3.03: fix continuous scrolling, thanks @fptech 65 65 * 3.04: fix bug "Featured Image not working with this plugin", thanks @vescovo 66 * 3.05: fix trash notices in the log files, thanks Svetoslav Marinov -
sponsors-carousel/trunk/sponsors-carousel.php
r1882442 r1912452 27 27 */ 28 28 29 define("SPONSORS_CAROUSEL_VERSION", "3.0. 4");29 define("SPONSORS_CAROUSEL_VERSION", "3.0.5"); 30 30 31 31 include_once("class-sponsors-carousel.php"); … … 86 86 87 87 if ( isset( $_POST['save'] ) ) { // Update options 88 $sponsors_carousel = new SponsorsCarousel( $id);88 $sponsors_carousel = new SponsorsCarousel(); 89 89 if ( $sponsors_carousel->update( $_POST ) ) { 90 90 echo "<div class='updated fade'><p><strong>" . __( 'Options updated', 'sponsors-carousel' ) . "</strong></p></div>";
Note: See TracChangeset
for help on using the changeset viewer.