Plugin Directory

Changeset 2828341


Ignore:
Timestamp:
12/04/2022 11:05:32 AM (3 years ago)
Author:
blazk
Message:

Release 3.3.8

Location:
rate-my-post
Files:
76 added
3 edited

Legend:

Unmodified
Added
Removed
  • rate-my-post/trunk/admin/class-rate-my-post-admin.php

    r2327017 r2828341  
    11321132        $rated_posts = array();
    11331133        $args = array(
    1134              'fields'          => 'ids',
    1135              'post_type'       => $this->define_post_types(),
    1136              'posts_per_page'  => -1
     1134             'fields'                 => 'ids',
     1135             'post_type'              => $this->define_post_types(),
     1136             'posts_per_page'         => -1,
     1137             'no_found_rows'          => true,
     1138             'update_post_term_cache' => false,
     1139             'meta_query'             => array(
     1140                array(
     1141                    'key'     => 'rmp_vote_count',
     1142                    'value'   => 0,
     1143                    'compare' => '>'
     1144                )
     1145             )
    11371146        );
    11381147        $the_query = new WP_Query( $args );
  • rate-my-post/trunk/rate-my-post.php

    r2812738 r2828341  
    1010 * Plugin URI:        https://wordpress.org/plugins/rate-my-post/
    1111 * Description:       Allows you to easily add rating functionality to your WordPress website.
    12  * Version:           3.3.7
     12 * Version:           3.3.8
    1313 * Author:            Blaz K.
    1414 * Author URI:        https://blazzdev.com
     
    4545
    4646// Plugin version
    47 define( 'RATE_MY_POST_VERSION', '3.3.7' );
     47define( 'RATE_MY_POST_VERSION', '3.3.8' );
    4848
    4949// Plugin activation
  • rate-my-post/trunk/readme.txt

    r2812738 r2828341  
    55Requires at least: 4.7.0
    66Tested up to: 6.1
    7 Stable tag: 3.3.7
     7Stable tag: 3.3.8
    88Requires PHP: 5.3
    99License: GPLv3
     
    256256== Changelog ==
    257257
     258= 3.3.8 =
     259* Optimized query for stats table - thanks to [Alfredo Arena](https://github.com/alfredoct96)
     260
    258261= 3.3.7 =
    259262* Fixed issues with Mutex on some server configurations - thanks to [Thomas Wünsche](https://github.com/bzrk)
Note: See TracChangeset for help on using the changeset viewer.