WP Maintenance - Version 2.6.2

Version Description

Cette version est stable / This version is stable

=

Download this release

Release Info

Developer Florent73
Plugin Icon 128x128 WP Maintenance
Version 2.6.2
Comparing to
See all releases

Code changes from version 2.6.1 to 2.6.2

Files changed (2) hide show
  1. readme.txt +5 -2
  2. wp-maintenance.php +2 -3
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: wordpress maintenance plugin
5
  Requires at least: 3.0
6
  Tested up to: 4.3
7
- Stable tag: 2.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -65,11 +65,14 @@ Oui mais merci de me soumettre les modifications souhaitées afin de mettre à j
65
 
66
  == Upgrade Notice ==
67
 
68
- = 2.6.1 =
69
  Cette version est stable / This version is stable
70
 
71
  == Changelog ==
72
 
 
 
 
73
  = 2.6.1 =
74
  * Correction des erreurs php notices / Fixed bug php notice (undefined index)
75
 
4
  Tags: wordpress maintenance plugin
5
  Requires at least: 3.0
6
  Tested up to: 4.3
7
+ Stable tag: 2.6.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
65
 
66
  == Upgrade Notice ==
67
 
68
+ = 2.6.2 =
69
  Cette version est stable / This version is stable
70
 
71
  == Changelog ==
72
 
73
+ = 2.6.2 =
74
+ * Correction des bugs / Fixed bugs
75
+
76
  = 2.6.1 =
77
  * Correction des erreurs php notices / Fixed bug php notice (undefined index)
78
 
wp-maintenance.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: Le plugin WP Maintenance vous permet de mettre votre site en attente le temps pour vous de faire une maintenance ou du lancement de votre site. Personnalisez cette page de maintenance avec une image, un compte à rebours, etc... / The WP Maintenance plugin allows you to put your website on the waiting time for you to do maintenance or launch your website. Personalize this page with picture, countdown...
7
  * Author: Florent Maillefaud
8
  * Author URI: http://www.restezconnectes.fr/
9
- * Version: 2.6.1
10
  * Text Domain: wp-maintenance
11
  * Domain Path: /languages/
12
  */
@@ -73,7 +73,7 @@ function wpm_make_multilang() {
73
  }
74
 
75
  /* Ajoute la version dans les options */
76
- define('WPM_VERSION', '2.6.1');
77
  $option['wp_maintenance_version'] = WPM_VERSION;
78
  if( !get_option('wp_maintenance_version') ) {
79
  add_option('wp_maintenance_version', $option);
@@ -330,7 +330,6 @@ function wpm_maintenance_mode() {
330
  if($paramMMode) {
331
  foreach($paramMMode as $var =>$value) {
332
  $paramMMode[$var] = ''.$value.'';
333
- echo '$paramMMode['.$var.'] = "'.$value.'"<br />';
334
  }
335
  }
336
 
6
  * Description: Le plugin WP Maintenance vous permet de mettre votre site en attente le temps pour vous de faire une maintenance ou du lancement de votre site. Personnalisez cette page de maintenance avec une image, un compte à rebours, etc... / The WP Maintenance plugin allows you to put your website on the waiting time for you to do maintenance or launch your website. Personalize this page with picture, countdown...
7
  * Author: Florent Maillefaud
8
  * Author URI: http://www.restezconnectes.fr/
9
+ * Version: 2.6.2
10
  * Text Domain: wp-maintenance
11
  * Domain Path: /languages/
12
  */
73
  }
74
 
75
  /* Ajoute la version dans les options */
76
+ define('WPM_VERSION', '2.6.2');
77
  $option['wp_maintenance_version'] = WPM_VERSION;
78
  if( !get_option('wp_maintenance_version') ) {
79
  add_option('wp_maintenance_version', $option);
330
  if($paramMMode) {
331
  foreach($paramMMode as $var =>$value) {
332
  $paramMMode[$var] = ''.$value.'';
 
333
  }
334
  }
335