Changeset 1050182
- Timestamp:
- 12/20/2014 11:47:53 AM (11 years ago)
- Location:
- wpmovielibrary/trunk
- Files:
-
- 3 edited
-
public/class-wpmoly-grid.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wpmovielibrary.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmovielibrary/trunk/public/class-wpmoly-grid.php
r1050170 r1050182 213 213 $query = "SELECT SQL_CALC_FOUND_ROWS DISTINCT ID FROM {$wpdb->posts} {$join} WHERE {$where} ORDER BY post_title {$order} {$limit}"; 214 214 215 var_dump( $view );216 215 $movies = $wpdb->get_col( $query ); 217 216 $total = $wpdb->get_var( 'SELECT FOUND_ROWS() AS total' ); -
wpmovielibrary/trunk/readme.txt
r1050170 r1050182 5 5 Requires at least: 3.8 6 6 Tested up to: 4.1 7 Stable tag: 2.1.1. 17 Stable tag: 2.1.1.2 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.2 = 142 * Fix - Forgotten debug notice 140 143 141 144 = 2.1.1.1 = -
wpmovielibrary/trunk/wpmovielibrary.php
r1050170 r1050182 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. 120 * Version: 2.1.1.2 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. 1' );37 define( 'WPMOLY_VERSION', '2.1.1.2' ); 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.