Plugin Directory

Changeset 2623593


Ignore:
Timestamp:
11/02/2021 05:18:11 PM (4 years ago)
Author:
softmodeling
Message:

Version 1.1.2

Location:
comment-admin-notifier/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • comment-admin-notifier/trunk/README.txt

    r2274278 r2623593  
    33Tags: comments, email, admin, alert, comment, notification, notify, discussion
    44Requires at least: 4.3
    5 Tested up to: 5.4
     5Tested up to: 5.8.1
    66Requires PHP: 5.6
    77Stable tag: trunk
     
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 When this plugin is installed, admin users get an email alert every time a new comment is posted on ANY post in the site
     11With this plugin, admin users get an email alert every time a new comment is posted on ANY post in the site.
    1212
    1313== Description ==
    1414
    15 In the *Discussion* page, authors of a post can use the checkbox *Email me whenever - Anyone posts a comment*.
     15In the *Settings->Discussion* page, authors of a post can use the checkbox *Email me whenever - Anyone posts a comment*.
    1616
    1717But this does not send an email as well to the site admins. In blogs where you have a number of guest authors, you may want to be informed about all the new comments so you can respond (if the author is missing) or just participate in the discussion.
     
    2323== Installation ==
    2424
    25 Install this plugin from within your WordPress site by going to Plugins → Add New → and type this plugin's name
     25Install this plugin from within your WordPress site by going to Plugins → Add New → and type this plugin's name.
     26
     27The plugin has a single configuration option (to enable the sending of emails) at the bottom of the *Settings->Discussion* page.
    2628
    2729== Changelog ==
     30
     31= 1.1.2 =
     32* Tested plugin compatibility with WordPress 5.8
    2833
    2934= 1.1.1 =
     
    3944== Upgrade Notice ==
    4045
     46= 1.1.2 =
     47* Tested plugin compatibility with WordPress 5.8
     48
    4149= 1.1.1 =
    4250* Tested plugin compatibility with WordPress 5.4
  • comment-admin-notifier/trunk/comment-admin-notifier.php

    r2274278 r2623593  
    1111 * Plugin URI:        https://github.com/jcabot/comment-admin-notifier
    1212 * Description:       Enables admin users to be notified about all new published comments (even if they're not the authors of the posts)
    13  * Version:           1.1.1
     13 * Version:           1.1.2
    1414 * Author:            Jordi Cabot
    1515 * Author URI:        https://seriouswp.com/
     
    3838 * Rename this for your plugin and update it as you release new versions.
    3939 */
    40 define( 'COMMENT_ADMIN_NOTIFIER', '1.1.1' );
     40define( 'COMMENT_ADMIN_NOTIFIER', '1.1.2' );
    4141
    4242
  • comment-admin-notifier/trunk/includes/class-comment-admin-notifier.php

    r2031250 r2623593  
    130130
    131131        //variable plugin_admin not used but the call is required to initialize dependencies
    132         $plugin_admin = new Comment_Admin_Notifier_Admin( $this->get_plugin_name(), $this->get_version() ); //variable unused but the
     132        $plugin_admin = new Comment_Admin_Notifier_Admin( $this->get_plugin_name(), $this->get_version() );
    133133
    134134        $plugin_settings = new Comment_Admin_Notifier_Settings( $this->get_plugin_name(), $this->get_version() );
Note: See TracChangeset for help on using the changeset viewer.