Changeset 1010762
- Timestamp:
- 10/20/2014 05:21:37 PM (11 years ago)
- Location:
- wp-website-monitoring
- Files:
-
- 2 edited
- 5 copied
-
tags/2.0.2 (copied) (copied from wp-website-monitoring/trunk)
-
tags/2.0.2/languages/wordpress-website-monitoring-fr_FR.mo (copied) (copied from wp-website-monitoring/trunk/languages/wordpress-website-monitoring-fr_FR.mo)
-
tags/2.0.2/languages/wordpress-website-monitoring-fr_FR.po (copied) (copied from wp-website-monitoring/trunk/languages/wordpress-website-monitoring-fr_FR.po)
-
tags/2.0.2/readme.txt (copied) (copied from wp-website-monitoring/trunk/readme.txt) (2 diffs)
-
tags/2.0.2/wordpress-website-monitoring.php (copied) (copied from wp-website-monitoring/trunk/wordpress-website-monitoring.php) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wordpress-website-monitoring.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-website-monitoring/tags/2.0.2/readme.txt
r1008708 r1010762 4 4 Requires at least: 3.1 5 5 Tested up to: 4.0 6 Stable tag: 2.0. 16 Stable tag: 2.0.2 7 7 8 8 Receive an email notification when your website is down. … … 40 40 == Changelog == 41 41 42 = 2.0.2 = 43 44 * 20 oct. 2014 45 Fix Notice: Undefined variable: dismissed_pointers in /wp-website-monitoring/wordpress-website-monitoring.php on line 140 46 42 47 = 2.0.1 = 43 48 -
wp-website-monitoring/tags/2.0.2/wordpress-website-monitoring.php
r1008708 r1010762 6 6 Plugin URI: https://wordpress.org/plugins/wp-website-monitoring/ 7 7 Description: Receive an email notification when your website is down. 8 Version: 2.0. 18 Version: 2.0.2 9 9 Author: WP Rocket 10 10 Author URI: http://wp-rocket.me … … 15 15 */ 16 16 17 define( 'WWM_VERSION' , '2.0. 1' );17 define( 'WWM_VERSION' , '2.0.2' ); 18 18 define( 'WWM_NAME' , 'Website Monitoring' ); 19 19 define( 'WWM_SLUG' , 'wordpress_website_monitoring' ); … … 137 137 public function add_pointer_scripts() 138 138 { 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 ) ); 139 141 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'] ) ) { 140 142 -
wp-website-monitoring/trunk/readme.txt
r1008708 r1010762 4 4 Requires at least: 3.1 5 5 Tested up to: 4.0 6 Stable tag: 2.0. 16 Stable tag: 2.0.2 7 7 8 8 Receive an email notification when your website is down. … … 40 40 == Changelog == 41 41 42 = 2.0.2 = 43 44 * 20 oct. 2014 45 Fix Notice: Undefined variable: dismissed_pointers in /wp-website-monitoring/wordpress-website-monitoring.php on line 140 46 42 47 = 2.0.1 = 43 48 -
wp-website-monitoring/trunk/wordpress-website-monitoring.php
r1008708 r1010762 6 6 Plugin URI: https://wordpress.org/plugins/wp-website-monitoring/ 7 7 Description: Receive an email notification when your website is down. 8 Version: 2.0. 18 Version: 2.0.2 9 9 Author: WP Rocket 10 10 Author URI: http://wp-rocket.me … … 15 15 */ 16 16 17 define( 'WWM_VERSION' , '2.0. 1' );17 define( 'WWM_VERSION' , '2.0.2' ); 18 18 define( 'WWM_NAME' , 'Website Monitoring' ); 19 19 define( 'WWM_SLUG' , 'wordpress_website_monitoring' ); … … 137 137 public function add_pointer_scripts() 138 138 { 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 ) ); 139 141 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'] ) ) { 140 142
Note: See TracChangeset
for help on using the changeset viewer.