Version Description
- 25/04/2014 =
- Fix - Escape url in admin
Download this release
Release Info
Developer | sormano |
Plugin | WPML Widgets |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- readme.txt +5 -2
- wpml-widgets.php +7 -7
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: sormano
|
|
3 |
Donate link: http://www.jeroensormani.com/donate/
|
4 |
Tags: WPML, WPML widget, Wordpress Multilanguage, Wordpress Multilanguage widget, WPML widget selector
|
5 |
Requires at least: 3.6
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -31,6 +31,9 @@ WPML Widgets is a ultra lightweight plugin, so there will be (about) zero extra
|
|
31 |
|
32 |
== Changelog ==
|
33 |
|
|
|
|
|
|
|
34 |
= 1.0.3 - 20/12/2014 =
|
35 |
* Fix - Notice on WP_Debug mode when values are not saved
|
36 |
* Add - Nagg message when WPML is not active ;-)
|
3 |
Donate link: http://www.jeroensormani.com/donate/
|
4 |
Tags: WPML, WPML widget, Wordpress Multilanguage, Wordpress Multilanguage widget, WPML widget selector
|
5 |
Requires at least: 3.6
|
6 |
+
Tested up to: 4.2
|
7 |
+
Stable tag: 1.0.4
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
31 |
|
32 |
== Changelog ==
|
33 |
|
34 |
+
= 1.0.4 - 25/04/2014 =
|
35 |
+
* Fix - Escape url in admin
|
36 |
+
|
37 |
= 1.0.3 - 20/12/2014 =
|
38 |
* Fix - Notice on WP_Debug mode when values are not saved
|
39 |
* Add - Nagg message when WPML is not active ;-)
|
wpml-widgets.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?PHP
|
2 |
/*
|
3 |
-
Plugin Name:
|
4 |
-
Plugin URI:
|
5 |
-
Description:
|
6 |
-
Version:
|
7 |
-
Author:
|
8 |
-
Author URI:
|
9 |
*/
|
10 |
|
11 |
/*
|
@@ -205,7 +205,7 @@ class WPML_Widgets {
|
|
205 |
?><div class='updated'>
|
206 |
<p><?php
|
207 |
_e( 'Hey, I see WPML is not activated, please activate it before using WPML Widgets.', 'wpml-widgets' );
|
208 |
-
?><a class='alignright installer-dismiss-nag' href='<?php echo add_query_arg( 'dismiss_wpml_widgets_nag', true ); ?>' data-repository='wpml'><?php
|
209 |
_e( 'Dismiss', 'wpml-widgtes' );
|
210 |
?></a>
|
211 |
</p>
|
1 |
<?PHP
|
2 |
/*
|
3 |
+
* Plugin Name: WPML Widgets
|
4 |
+
* Plugin URI: http://www.jeroensormani.com
|
5 |
+
* Description: Easily select which widgets you want to show for which languages
|
6 |
+
* Version: 1.0.4
|
7 |
+
* Author: Jeroen Sormani
|
8 |
+
* Author URI: http://www.jeroensormani.com
|
9 |
*/
|
10 |
|
11 |
/*
|
205 |
?><div class='updated'>
|
206 |
<p><?php
|
207 |
_e( 'Hey, I see WPML is not activated, please activate it before using WPML Widgets.', 'wpml-widgets' );
|
208 |
+
?><a class='alignright installer-dismiss-nag' href='<?php echo esc_url( add_query_arg( 'dismiss_wpml_widgets_nag', true ) ); ?>' data-repository='wpml'><?php
|
209 |
_e( 'Dismiss', 'wpml-widgtes' );
|
210 |
?></a>
|
211 |
</p>
|