Plugin Directory

Changeset 1050170


Ignore:
Timestamp:
12/20/2014 11:33:59 AM (11 years ago)
Author:
Askelon
Message:

Version 2.1.1.1

Location:
wpmovielibrary/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wpmovielibrary/trunk/public/class-wpmoly-archives.php

    r1047390 r1050170  
    591591                if ( $has_menu ) {
    592592                    $args = compact( 'order', 'orderby', 'number', 'letter' );
    593                     $menu = self::taxonomy_archive_menu( $taxonomy, $args );
     593                    // PHP 5.3
     594                    $menu = WPMOLY_Archives::taxonomy_archive_menu( $taxonomy, $args );
    594595                }
    595596
  • wpmovielibrary/trunk/public/class-wpmoly-grid.php

    r1047390 r1050170  
    157157            if ( false != $_view )
    158158                $view = $_view;
     159            else
     160                $view = 'grid';
    159161
    160162            $movies = array();
     
    211213            $query = "SELECT SQL_CALC_FOUND_ROWS DISTINCT ID FROM {$wpdb->posts} {$join} WHERE {$where} ORDER BY post_title {$order} {$limit}";
    212214
     215            var_dump( $view );
    213216            $movies = $wpdb->get_col( $query );
    214217            $total  = $wpdb->get_var( 'SELECT FOUND_ROWS() AS total' );
  • wpmovielibrary/trunk/public/class-wpmoly-shortcodes.php

    r1047390 r1050170  
    112112                $grid_menu = '';
    113113                if ( $menu )
    114                     $grid_menu = WPMOLY_Movies::get_grid_menu( $atts );
    115 
    116                 $content = WPMOLY_Movies::get_the_grid( $atts, $shortcode = true );
     114                    $grid_menu = WPMOLY_Grid::get_menu( $atts );
     115
     116                $content = WPMOLY_Grid::get_content( $atts, $shortcode = true );
    117117
    118118                $content = $grid_menu . $content;
  • wpmovielibrary/trunk/readme.txt

    r1047390 r1050170  
    55Requires at least: 3.8
    66Tested up to: 4.1
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.1.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    138138
    139139== Changelog ==
     140
     141= 2.1.1.1 =
     142* Fix - PHP 5.3 bug in taxonomy archive pages
     143* Fix - [movie_grid] Shortcode bug returning empty
    140144
    141145= 2.1.1 =
  • wpmovielibrary/trunk/wpmovielibrary.php

    r1047390 r1050170  
    1818 * Plugin URI:  http://wpmovielibrary.com
    1919 * Description: A WordPress Plugin to manage a personnal library of movies.
    20  * Version:     2.1.1
     20 * Version:     2.1.1.1
    2121 * Author:      Charlie MERLAND
    2222 * Author URI:  http://www.caercam.org/
     
    3535define( 'WPMOLY_PLUGIN',                 plugin_basename( __FILE__ ) );
    3636define( 'WPMOLY_NAME',                   'WPMovieLibrary' );
    37 define( 'WPMOLY_VERSION',                '2.1.1' );
     37define( 'WPMOLY_VERSION',                '2.1.1.1' );
    3838define( 'WPMOLY_SLUG',                   'wpmoly' );
    3939define( 'WPMOLY_URL',                    plugins_url( basename( __DIR__ ) ) );
Note: See TracChangeset for help on using the changeset viewer.