Plugin Directory

Changeset 674772


Ignore:
Timestamp:
02/28/2013 09:51:43 PM (13 years ago)
Author:
iluminatus
Message:

Fixing widget bug, thumbnail size was being reset by default values.

Location:
single-latest-posts-lite/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • single-latest-posts-lite/trunk/core/classes/single-latest-posts-widget.php

    r620293 r674772  
    22/*
    33 * Single Latest Posts Lite Widget
    4  * Version 1.0
     4 * Version 1.2.2
    55 * Author L'Elite
    66 * Author URI http://laelite.info/
     
    170170        $status_list = $wpdb->get_results("SELECT DISTINCT post_status FROM $wpdb->posts");
    171171        $type_list = $wpdb->get_col("SELECT DISTINCT post_type FROM $wpdb->posts");
    172         $thumbnail_w = 150;
    173         $thumbnail_h = 150;
    174172        // Parse & Merge the passed values with the default ones
    175173        $instance = wp_parse_args( $instance, $this->defaults );
  • single-latest-posts-lite/trunk/readme.txt

    r648570 r674772  
    55Requires at least: 3.0
    66Tested up to: 3.5
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88
    99This plugin allows you to pull all the recent posts from your WordPress blog and display them the way you want
     
    7676== Changelog ==
    7777
     78= 1.2.2 =
     79* Bug fix: widget thumbnail size was being reset by default data.
     80
    7881= 1.2.1 =
    7982* HTML improvement to simplify visual customization
  • single-latest-posts-lite/trunk/single-latest-posts-config.php

    r648570 r674772  
    22/*
    33 * Single Latest Posts Lite Configuration
    4  * Version: 1.0
     4 * Version: 1.2.2
    55 * Author: L'Elite
    66 * Author URI: http://laelite.info/
     
    2121define( 'SLPosts_Root', $slp_root, true );
    2222// Current Version
    23 define( 'SLPosts_Version', '1.2.1', true );
     23define( 'SLPosts_Version', '1.2.2', true );
    2424// Classes
    2525require_once dirname( __FILE__ ) . '/core/classes/single-latest-posts-widget.php';
  • single-latest-posts-lite/trunk/single-latest-posts.php

    r648570 r674772  
    44Plugin URI: http://wordpress.org/extend/plugins/single-latest-posts-lite/
    55Description: Display the latest posts available in your WordPress blog using functions, shortcodes or widgets.
    6 Version: 1.2.1
     6Version: 1.2.2
    77Author: L'Elite
    88Author URI: http://laelite.info/
     
    457457            $total += 1;
    458458        }
     459        echo "<script>console.log('".count($pages)."')</script>";
    459460        // Open pagination wrapper
    460461        echo $html_tags['pagination_o'];
Note: See TracChangeset for help on using the changeset viewer.