WP Maintenance - Version 2.5.1

Version Description

Cette version est stable / This version is stable

=

Download this release

Release Info

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

Code changes from version 2.5 to 2.5.1

Files changed (3) hide show
  1. readme.txt +5 -2
  2. wp-maintenance.php +2 -2
  3. wpm_fonctions.php +9 -2
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.1.1
7
- Stable tag: 2.5
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.5 =
69
  Cette version est stable / This version is stable
70
 
71
  == Changelog ==
72
 
 
 
 
73
  = 2.5 =
74
  * Résolution de divers bugs CSS, ajout d'un titre encart newsletter, ajout champs code header / Fixed various CSS bugs, adding an input for newsletter title, adding a code header fields
75
 
4
  Tags: wordpress maintenance plugin
5
  Requires at least: 3.0
6
  Tested up to: 4.1.1
7
+ Stable tag: 2.5.1
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.5.1 =
69
  Cette version est stable / This version is stable
70
 
71
  == Changelog ==
72
 
73
+ = 2.5.1 =
74
+ * Résolution de divers bugs CSS / Fixed various CSS bugs
75
+
76
  = 2.5 =
77
  * Résolution de divers bugs CSS, ajout d'un titre encart newsletter, ajout champs code header / Fixed various CSS bugs, adding an input for newsletter title, adding a code header fields
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.5
10
  * Text Domain: wp-maintenance
11
  * Domain Path: /languages/
12
  */
@@ -67,7 +67,7 @@ function wpm_make_multilang() {
67
  }
68
 
69
  /* Ajoute la version dans les options */
70
- define('WPM_VERSION', '2.5');
71
  $option['wp_maintenance_version'] = WPM_VERSION;
72
  if( !get_option('wp_maintenance_version') ) {
73
  add_option('wp_maintenance_version', $option);
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.5.1
10
  * Text Domain: wp-maintenance
11
  * Domain Path: /languages/
12
  */
67
  }
68
 
69
  /* Ajoute la version dans les options */
70
+ define('WPM_VERSION', '2.5.1');
71
  $option['wp_maintenance_version'] = WPM_VERSION;
72
  if( !get_option('wp_maintenance_version') ) {
73
  add_option('wp_maintenance_version', $option);
wpm_fonctions.php CHANGED
@@ -213,7 +213,13 @@ a:hover, a:focus, a:active {color: #_COLORTXT;text-decoration: underline;}
213
  * html div#wrapper {
214
  height: 100%; /* Fix IE 5.5, 6 and 7 */
215
  }
216
-
 
 
 
 
 
 
217
  #wpm_footer {
218
  width: 100%;
219
  clear: both;
@@ -224,10 +230,11 @@ a:hover, a:focus, a:active {color: #_COLORTXT;text-decoration: underline;}
224
  padding-top:10px;
225
  margin-top: 40px;
226
  font-size: 12px;
227
- position: relative;
228
  text-align: center;
229
  width: 100%;
230
  bottom: 0;
 
231
  }
232
  .wpm_copyright {
233
  color:#_COLOR_TXT_BT;
213
  * html div#wrapper {
214
  height: 100%; /* Fix IE 5.5, 6 and 7 */
215
  }
216
+ #wrapper {
217
+ min-height: 100%;
218
+ position: relative;
219
+ }
220
+ #content {
221
+ height: 100%;
222
+ }
223
  #wpm_footer {
224
  width: 100%;
225
  clear: both;
230
  padding-top:10px;
231
  margin-top: 40px;
232
  font-size: 12px;
233
+ position: absolute;
234
  text-align: center;
235
  width: 100%;
236
  bottom: 0;
237
+ display: inline-block;
238
  }
239
  .wpm_copyright {
240
  color:#_COLOR_TXT_BT;