Plugin Directory

Changeset 1010762


Ignore:
Timestamp:
10/20/2014 05:21:37 PM (11 years ago)
Author:
GeekPress
Message:

tagging 2.0.2

Location:
wp-website-monitoring
Files:
2 edited
5 copied

Legend:

Unmodified
Added
Removed
  • wp-website-monitoring/tags/2.0.2/readme.txt

    r1008708 r1010762  
    44Requires at least: 3.1
    55Tested up to: 4.0
    6 Stable tag: 2.0.1
     6Stable tag: 2.0.2
    77
    88Receive an email notification when your website is down.
     
    4040== Changelog ==
    4141
     42= 2.0.2 =
     43
     44* 20 oct. 2014
     45Fix Notice: Undefined variable: dismissed_pointers in /wp-website-monitoring/wordpress-website-monitoring.php on line 140
     46
    4247= 2.0.1 =
    4348
  • wp-website-monitoring/tags/2.0.2/wordpress-website-monitoring.php

    r1008708 r1010762  
    66Plugin URI: https://wordpress.org/plugins/wp-website-monitoring/
    77Description: Receive an email notification when your website is down.
    8 Version: 2.0.1
     8Version: 2.0.2
    99Author: WP Rocket
    1010Author URI: http://wp-rocket.me
     
    1515*/
    1616
    17 define( 'WWM_VERSION'       , '2.0.1' );
     17define( 'WWM_VERSION'       , '2.0.2' );
    1818define( 'WWM_NAME'          , 'Website Monitoring' );
    1919define( 'WWM_SLUG'          , 'wordpress_website_monitoring' );
     
    137137    public function add_pointer_scripts()
    138138    {   
     139        // Get array list of dismissed pointers for current user and convert it to array
     140        $dismissed_pointers = explode( ',', get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) );
    139141        if( current_user_can( 'manage_options' ) && ! in_array( 'wp_website_monitoring', $dismissed_pointers ) && get_current_screen()->base != 'settings_page_wordpress_website_monitoring' && empty( $this->options['email'] ) ) {
    140142       
  • wp-website-monitoring/trunk/readme.txt

    r1008708 r1010762  
    44Requires at least: 3.1
    55Tested up to: 4.0
    6 Stable tag: 2.0.1
     6Stable tag: 2.0.2
    77
    88Receive an email notification when your website is down.
     
    4040== Changelog ==
    4141
     42= 2.0.2 =
     43
     44* 20 oct. 2014
     45Fix Notice: Undefined variable: dismissed_pointers in /wp-website-monitoring/wordpress-website-monitoring.php on line 140
     46
    4247= 2.0.1 =
    4348
  • wp-website-monitoring/trunk/wordpress-website-monitoring.php

    r1008708 r1010762  
    66Plugin URI: https://wordpress.org/plugins/wp-website-monitoring/
    77Description: Receive an email notification when your website is down.
    8 Version: 2.0.1
     8Version: 2.0.2
    99Author: WP Rocket
    1010Author URI: http://wp-rocket.me
     
    1515*/
    1616
    17 define( 'WWM_VERSION'       , '2.0.1' );
     17define( 'WWM_VERSION'       , '2.0.2' );
    1818define( 'WWM_NAME'          , 'Website Monitoring' );
    1919define( 'WWM_SLUG'          , 'wordpress_website_monitoring' );
     
    137137    public function add_pointer_scripts()
    138138    {   
     139        // Get array list of dismissed pointers for current user and convert it to array
     140        $dismissed_pointers = explode( ',', get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) );
    139141        if( current_user_can( 'manage_options' ) && ! in_array( 'wp_website_monitoring', $dismissed_pointers ) && get_current_screen()->base != 'settings_page_wordpress_website_monitoring' && empty( $this->options['email'] ) ) {
    140142       
Note: See TracChangeset for help on using the changeset viewer.