Changeset 1050170
- Timestamp:
- 12/20/2014 11:33:59 AM (11 years ago)
- Location:
- wpmovielibrary/trunk
- Files:
-
- 5 edited
-
public/class-wpmoly-archives.php (modified) (1 diff)
-
public/class-wpmoly-grid.php (modified) (2 diffs)
-
public/class-wpmoly-shortcodes.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wpmovielibrary.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmovielibrary/trunk/public/class-wpmoly-archives.php
r1047390 r1050170 591 591 if ( $has_menu ) { 592 592 $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 ); 594 595 } 595 596 -
wpmovielibrary/trunk/public/class-wpmoly-grid.php
r1047390 r1050170 157 157 if ( false != $_view ) 158 158 $view = $_view; 159 else 160 $view = 'grid'; 159 161 160 162 $movies = array(); … … 211 213 $query = "SELECT SQL_CALC_FOUND_ROWS DISTINCT ID FROM {$wpdb->posts} {$join} WHERE {$where} ORDER BY post_title {$order} {$limit}"; 212 214 215 var_dump( $view ); 213 216 $movies = $wpdb->get_col( $query ); 214 217 $total = $wpdb->get_var( 'SELECT FOUND_ROWS() AS total' ); -
wpmovielibrary/trunk/public/class-wpmoly-shortcodes.php
r1047390 r1050170 112 112 $grid_menu = ''; 113 113 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 ); 117 117 118 118 $content = $grid_menu . $content; -
wpmovielibrary/trunk/readme.txt
r1047390 r1050170 5 5 Requires at least: 3.8 6 6 Tested up to: 4.1 7 Stable tag: 2.1.1 7 Stable tag: 2.1.1.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 138 138 139 139 == 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 140 144 141 145 = 2.1.1 = -
wpmovielibrary/trunk/wpmovielibrary.php
r1047390 r1050170 18 18 * Plugin URI: http://wpmovielibrary.com 19 19 * Description: A WordPress Plugin to manage a personnal library of movies. 20 * Version: 2.1.1 20 * Version: 2.1.1.1 21 21 * Author: Charlie MERLAND 22 22 * Author URI: http://www.caercam.org/ … … 35 35 define( 'WPMOLY_PLUGIN', plugin_basename( __FILE__ ) ); 36 36 define( 'WPMOLY_NAME', 'WPMovieLibrary' ); 37 define( 'WPMOLY_VERSION', '2.1.1 ' );37 define( 'WPMOLY_VERSION', '2.1.1.1' ); 38 38 define( 'WPMOLY_SLUG', 'wpmoly' ); 39 39 define( 'WPMOLY_URL', plugins_url( basename( __DIR__ ) ) );
Note: See TracChangeset
for help on using the changeset viewer.