Changeset 2484267
- Timestamp:
- 03/02/2021 11:56:20 AM (5 years ago)
- Location:
- query-wrangler
- Files:
-
- 6 edited
- 1 copied
-
tags/1.5.50 (copied) (copied from query-wrangler/trunk)
-
tags/1.5.50/README.txt (modified) (2 diffs)
-
tags/1.5.50/query-wrangler.php (modified) (2 diffs)
-
tags/1.5.50/widget.query.php (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/query-wrangler.php (modified) (2 diffs)
-
trunk/widget.query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
query-wrangler/tags/1.5.50/README.txt
r2480680 r2484267 75 75 == Changelog == 76 76 77 = 1.5.50 = 78 79 * Bug fix: Regression in 1.5.49. Redundant dispatch of qw_pre_render broke QW widgets. 80 77 81 = 1.5.49 = 78 82 … … 381 385 == Upgrade Notice == 382 386 383 1.5. 48 More fixes for queries that are offset and paginated.387 1.5.50 New reature to hide header and footer when result set empty. -
query-wrangler/tags/1.5.50/query-wrangler.php
r2480680 r2484267 10 10 Author: Jonathan Daggerhart 11 11 Author URI: http://daggerhart.com 12 Version: 1.5. 4912 Version: 1.5.50 13 13 14 14 ****************************************************************** … … 31 31 32 32 // some useful definitions 33 define( 'QW_VERSION', 1.5 49);33 define( 'QW_VERSION', 1.550 ); 34 34 define( 'QW_PLUGIN_DIR', dirname( __FILE__ ) ); 35 35 define( 'QW_PLUGIN_URL', plugins_url( '', __FILE__ ) ); -
query-wrangler/tags/1.5.50/widget.query.php
r1822973 r2484267 65 65 $options = qw_generate_query_options( $instance['qw-widget'] ); 66 66 $widget_content = qw_execute_query( $instance['qw-widget'], $options_override ); 67 68 // pre_render hook69 $options = apply_filters( 'qw_pre_render', $options );70 67 71 68 $show_title = ( isset( $instance['qw-show-widget-title'] ) && ! empty( $instance['qw-show-widget-title'] ) ); -
query-wrangler/trunk/README.txt
r2480680 r2484267 75 75 == Changelog == 76 76 77 = 1.5.50 = 78 79 * Bug fix: Regression in 1.5.49. Redundant dispatch of qw_pre_render broke QW widgets. 80 77 81 = 1.5.49 = 78 82 … … 381 385 == Upgrade Notice == 382 386 383 1.5. 48 More fixes for queries that are offset and paginated.387 1.5.50 New reature to hide header and footer when result set empty. -
query-wrangler/trunk/query-wrangler.php
r2480680 r2484267 10 10 Author: Jonathan Daggerhart 11 11 Author URI: http://daggerhart.com 12 Version: 1.5. 4912 Version: 1.5.50 13 13 14 14 ****************************************************************** … … 31 31 32 32 // some useful definitions 33 define( 'QW_VERSION', 1.5 49);33 define( 'QW_VERSION', 1.550 ); 34 34 define( 'QW_PLUGIN_DIR', dirname( __FILE__ ) ); 35 35 define( 'QW_PLUGIN_URL', plugins_url( '', __FILE__ ) ); -
query-wrangler/trunk/widget.query.php
r1822973 r2484267 65 65 $options = qw_generate_query_options( $instance['qw-widget'] ); 66 66 $widget_content = qw_execute_query( $instance['qw-widget'], $options_override ); 67 68 // pre_render hook69 $options = apply_filters( 'qw_pre_render', $options );70 67 71 68 $show_title = ( isset( $instance['qw-show-widget-title'] ) && ! empty( $instance['qw-show-widget-title'] ) );
Note: See TracChangeset
for help on using the changeset viewer.