Plugin Directory

Changeset 3368930


Ignore:
Timestamp:
09/27/2025 05:06:53 PM (6 months ago)
Author:
etruel
Message:

2.1.1 – Sep 25, 2025

Location:
wpecounter
Files:
40 added
3 edited

Legend:

Unmodified
Added
Removed
  • wpecounter/trunk/includes/class-views.php

    r3311724 r3368930  
    416416            $post_types  = get_post_types($args, $output);
    417417            foreach ($post_types as $post_type) {
    418                 if (@$cpostypes[$post_type]) {
     418                if (isset($cpostypes[$post_type]) && $cpostypes[$post_type]) {
    419419                    add_filter('manage_edit-' . $post_type . '_columns', array($this, 'posts_columns_id'), 10);
    420420                    add_action('manage_' . $post_type . '_posts_custom_column', array($this, 'posts_custom_id_columns'), 10, 2);
  • wpecounter/trunk/readme.txt

    r3311724 r3368930  
    66Tested up to: 6.8.2
    77Requires PHP: 5.6
    8 Stable tag: 2.1
     8Stable tag: 2.1.1
    99License: GPLv2
    1010
     
    5555
    5656== Changelog ==
     57
     58= 2.1.1 – Sep 25, 2025 =
     59* Fixed PHP Warnings displayed in DEBUG mode for Undefined array keys of non-public post-types.
    5760
    5861= 2.1 – Jun 13, 2025 =
     
    114117
    115118== Upgrade Notice ==
    116 = 2.1 =
    117 Major update: Adds Gutenberg block, per-post view metabox with reset, role-based view filtering, and tools to reset counters. Fully compatible with WP 6.8.2.
     119Fully compatible with WP 6.8.2. Fixed PHP Warnings displayed in DEBUG mode
  • wpecounter/trunk/wpecounter.php

    r3311724 r3368930  
    44 * Plugin URI:   https://etruel.com/downloads/wpecounter
    55 * Description:  Counts visits on post lists, pages and/or custom post types. It also displays them in posts, pages or text widget content, shortcode [WPeCounter].
    6  * Version:      2.1
     6 * Version:      2.1.1
    77 * Author:       Etruel Developments LLC
    88 * Author URI:   https://etruel.com
     
    1515// Plugin version
    1616if (!defined('WPECOUNTER_VERSION'))
    17     define('WPECOUNTER_VERSION', '2.1');
     17    define('WPECOUNTER_VERSION', '2.1.1');
    1818
    1919if (!class_exists('WPeCounter')) :
Note: See TracChangeset for help on using the changeset viewer.