Changeset 1742466
- Timestamp:
- 10/07/2017 10:39:48 AM (8 years ago)
- Location:
- wp-libre-form
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.2 (copied) (copied from wp-libre-form/trunk)
-
tags/1.4.2/classes/class-wplf-polylang.php (modified) (1 diff)
-
tags/1.4.2/readme.txt (modified) (1 diff)
-
tags/1.4.2/wp-libre-form.php (modified) (2 diffs)
-
trunk/classes/class-wplf-polylang.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-libre-form.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-libre-form/tags/1.4.2/classes/class-wplf-polylang.php
r1734198 r1742466 88 88 89 89 public function ajax_object( $array ) { 90 $array['lang'] = pll_current_language(); 90 if ( function_exists( 'pll_current_language' ) ) { 91 $array['lang'] = pll_current_language(); 92 } else { 93 $array['lang'] = null; 94 } 91 95 return $array; 92 96 } -
wp-libre-form/tags/1.4.2/readme.txt
r1734198 r1742466 5 5 Requires at least: 4.2 6 6 Tested up to: 4.7.4 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html -
wp-libre-form/tags/1.4.2/wp-libre-form.php
r1734198 r1742466 4 4 * Plugin URI: https://github.com/anttiviljami/wp-libre-form 5 5 * Description: A minimal HTML form builder for WordPress; made for developers 6 * Version: 1.4. 16 * Version: 1.4.2 7 7 * Author: @anttiviljami 8 8 * Author URI: https://github.com/anttiviljami/ … … 32 32 if ( ! class_exists( 'WP_Libre_Form' ) ) : 33 33 34 define( 'WPLF_VERSION', '1.4. 1' );34 define( 'WPLF_VERSION', '1.4.2' ); 35 35 36 36 class WP_Libre_Form { -
wp-libre-form/trunk/classes/class-wplf-polylang.php
r1734198 r1742466 88 88 89 89 public function ajax_object( $array ) { 90 $array['lang'] = pll_current_language(); 90 if ( function_exists( 'pll_current_language' ) ) { 91 $array['lang'] = pll_current_language(); 92 } else { 93 $array['lang'] = null; 94 } 91 95 return $array; 92 96 } -
wp-libre-form/trunk/readme.txt
r1734198 r1742466 5 5 Requires at least: 4.2 6 6 Tested up to: 4.7.4 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html -
wp-libre-form/trunk/wp-libre-form.php
r1734198 r1742466 4 4 * Plugin URI: https://github.com/anttiviljami/wp-libre-form 5 5 * Description: A minimal HTML form builder for WordPress; made for developers 6 * Version: 1.4. 16 * Version: 1.4.2 7 7 * Author: @anttiviljami 8 8 * Author URI: https://github.com/anttiviljami/ … … 32 32 if ( ! class_exists( 'WP_Libre_Form' ) ) : 33 33 34 define( 'WPLF_VERSION', '1.4. 1' );34 define( 'WPLF_VERSION', '1.4.2' ); 35 35 36 36 class WP_Libre_Form {
Note: See TracChangeset
for help on using the changeset viewer.