Plugin Directory

Changeset 2953162


Ignore:
Timestamp:
08/14/2023 10:08:38 AM (3 years ago)
Author:
Dudo
Message:

version 3.4.5

Location:
yet-another-stars-rating/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • yet-another-stars-rating/trunk/admin/settings/classes/YasrSettingsGeneral.php

    r2929048 r2953162  
    817817        //Array to return
    818818        $output = array();
     819        $allowed_archives = array('is_home', 'is_archive', 'is_tag');
    819820
    820821        // Loop through each of the incoming options
     
    867868        $output['auto_insert_enabled']         = YasrSettings::whitelistSettings($output, 'auto_insert_enabled', 0, 1);
    868869        $output['stars_title']                 = YasrSettings::whitelistSettings($output, 'stars_title', 'no', 'yes');
    869         $output['sort_posts_in']               = YasrSettings::whitelistSettings($output, 'sort_posts_in', ['is_home'], $output['sort_posts_in']);
     870        $output['sort_posts_in']               = YasrSettings::whitelistSettings($output, 'sort_posts_in', ['is_home'], $allowed_archives);
    870871        $output['show_overall_in_loop']        = YasrSettings::whitelistSettings($output, 'show_overall_in_loop', 'disabled', 'enabled');
    871872        $output['show_visitor_votes_in_loop']  = YasrSettings::whitelistSettings($output, 'show_visitor_votes_in_loop', 'disabled', 'enabled');
  • yet-another-stars-rating/trunk/readme.txt

    r2951952 r2953162  
    55Contributors: Dudo
    66Tested up to: 6.3
    7 Stable tag: 3.4.4
     7Stable tag: 3.4.5
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
     
    207207The full changelog can be found in the plugin's directory. Recent entries:
    208208
     209= 3.4.5 =
     210* FIXED: This version fixes a warning that randomly appears on the settings page.
     211
    209212= 3.4.4 =
    210213* TWEAKED: since this version, for non-logged-in users, or users that can't edit posts, it is no longer possible to vote for a post that do not exist or is marked as private.
  • yet-another-stars-rating/trunk/yet-another-stars-rating.php

    r2951952 r2953162  
    55 * Plugin URI: http://wordpress.org/plugins/yet-another-stars-rating/
    66 * Description: Boost the way people interact with your site with an easy WordPress stars rating system! With schema.org rich snippets YASR will improve your SEO
    7  * Version: 3.4.4
     7 * Version: 3.4.5
    88 * Requires at least: 4.7
    99 * Requires PHP: 5.4
     
    7979    // Signal that SDK was initiated.
    8080    do_action( 'yasr_fs_loaded' );
    81     define( 'YASR_VERSION_NUM', '3.4.4' );
     81    define( 'YASR_VERSION_NUM', '3.4.5' );
    8282    //Plugin absolute path
    8383    //e.g. /var/www/html/plugin_development/wp-content/plugins/yet-another-stars-rating
Note: See TracChangeset for help on using the changeset viewer.