Plugin Directory

Changeset 2898353


Ignore:
Timestamp:
04/13/2023 09:07:54 AM (3 years ago)
Author:
finnj
Message:

Version 1.6.3

Location:
frontier-query/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • frontier-query/trunk/frontier-query.php

    r2898339 r2898353  
    55Description: Display list and grouping of posts in widgets, posts and pages. Breakdown posts by categories, taxonomies, date, post type etc.
    66Author: finnj
    7 Version: 1.6.2
     7Version: 1.6.3
    88Author URI: http://wpfrontier.com
    99*/
     
    1111
    1212// define constants
    13 define('FRONTIER_QUERY_VERSION', "1.6.2");
     13define('FRONTIER_QUERY_VERSION', "1.6.3");
    1414define('FRONTIER_QUERY_DIR', dirname( __FILE__ )); //an absolute path to this directory
    1515define('FRONTIER_QUERY_URL', plugin_dir_url( __FILE__ )); //url path to this directory
  • frontier-query/trunk/include/frontier-query-util.php

    r1329987 r2898353  
    596596    {
    597597    $tmp_pt = get_post_type_object($tmp_pt_name);
     598    $tmp_pt_label = $tmp_pt->label;
    598599    //error_log(print_r($tmp_pt,true));
    599     return $tmp_pt->label;
     600    return $tmp_pt_label;
    600601    }
    601602
  • frontier-query/trunk/readme.txt

    r2898339 r2898353  
    9292== Changelog ==
    9393
     94= 1.6.3 =
     95* Fix for Trying to get property label of non-object in  - Function fq_get_posttype_label
     96
    9497= 1.6.2 =
    9598* Tested with Wordpress version 6.2
Note: See TracChangeset for help on using the changeset viewer.