Plugin Directory

Changeset 1410808


Ignore:
Timestamp:
05/05/2016 06:49:53 AM (10 years ago)
Author:
neoxx
Message:

1.62

Location:
featuring-countcomments/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • featuring-countcomments/trunk/featuring-countcomments.php

    r1210840 r1410808  
    66Description: Counts the number of comments for each user who has been logged in at the time of commenting.
    77Author: Dr. Bernhard Riedl
    8 Version: 1.61
     8Version: 1.62
    99Author URI: http://www.bernhard-riedl.com/
    1010*/
    1111
    1212/*
    13 Copyright 2006-2015 Dr. Bernhard Riedl
    14 
    15 Inspirations & Proof-Reading 2007-2015
     13Copyright 2006-2016 Dr. Bernhard Riedl
     14
     15Inspirations & Proof-Reading 2007-2016
    1616by Veronika Grascher
    1717original idea by Martijn van der Kwast
     
    818818
    819819    function head_meta() {
    820         echo("<meta name=\"".$this->get_nicename()."\" content=\"1.61\" />\n");
     820        echo("<meta name=\"".$this->get_nicename()."\" content=\"1.62\" />\n");
    821821    }
    822822
     
    18511851
    18521852            <?php
     1853            $ret_val='';
    18531854
    18541855            foreach ($this->search_attributes as $search_attribute) {
  • featuring-countcomments/trunk/readme.txt

    r1369705 r1410808  
    44Tags: count, comment, comments, author, authors, user, users, widget, dashboard, sidebar, shortcode, multisite, multi-site
    55Requires at least: 3.3
    6 Tested up to: 4.5
     6Tested up to: 4.6
    77Stable tag: trunk
    88License: GPLv3 or later
     
    236236
    237237== Changelog ==
     238
     239= 1.62 =
     240
     241* changed the permission-denied message in uninstall.php [core-trac #14530](https://core.trac.wordpress.org/ticket/14530)
     242* fixed some typos
    238243
    239244= 1.61 =
     
    276281* removed PHP closing tag before EOF
    277282* removed reference sign on function calls
    278 * adopted plugin-links to the new structure of wordpress.org
     283* adapted plugin-links to the new structure of wordpress.org
    279284* cleaned-up code
    280285
     
    284289= 1.32 =
    285290
    286 * adopted 'Defaults'-string to use WordPress internal i18n
     291* adapted 'Defaults'-string to use WordPress internal i18n
    287292* updated support section
    288293* updated project-information
     
    291296
    292297* changed handling of contextual help for WordPress 3.3
    293 * adopted handling of default settings
     298* adapted handling of default settings
    294299* external files are now registered in init-hook
    295300
    296301= 1.30 =
    297302
    298 * adoption of JavaScript code for jQuery 1.6.1 (ships with WordPress 3.2 => increased minimum requirement to WordPress 3.2 for this and all upcoming releases)
     303* adaption of JavaScript code for jQuery 1.6.1 (ships with WordPress 3.2 => increased minimum requirement to WordPress 3.2 for this and all upcoming releases)
    299304* small enhancements
    300305
  • featuring-countcomments/trunk/uninstall.php

    r1044333 r1410808  
    1212
    1313if (!defined( 'WP_UNINSTALL_PLUGIN'))
    14     wp_die(__('Cheatin&#8217; uh?'), '', array('response' => 403));
     14    wp_die(__('You are not allowed to uninstall plugins on this site.'), '', array('response' => 403));
    1515
    1616if (!current_user_can('manage_options'))
Note: See TracChangeset for help on using the changeset viewer.