Plugin Directory

Changeset 1742466


Ignore:
Timestamp:
10/07/2017 10:39:48 AM (8 years ago)
Author:
Zuige
Message:

Release v1.4.2

Location:
wp-libre-form
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-libre-form/tags/1.4.2/classes/class-wplf-polylang.php

    r1734198 r1742466  
    8888
    8989    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      }
    9195      return $array;
    9296    }
  • wp-libre-form/tags/1.4.2/readme.txt

    r1734198 r1742466  
    55Requires at least: 4.2
    66Tested up to: 4.7.4
    7 Stable tag: 1.4.1
     7Stable tag: 1.4.2
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • wp-libre-form/tags/1.4.2/wp-libre-form.php

    r1734198 r1742466  
    44 * Plugin URI: https://github.com/anttiviljami/wp-libre-form
    55 * Description: A minimal HTML form builder for WordPress; made for developers
    6  * Version: 1.4.1
     6 * Version: 1.4.2
    77 * Author: @anttiviljami
    88 * Author URI: https://github.com/anttiviljami/
     
    3232if ( ! class_exists( 'WP_Libre_Form' ) ) :
    3333
    34 define( 'WPLF_VERSION', '1.4.1' );
     34define( 'WPLF_VERSION', '1.4.2' );
    3535
    3636class WP_Libre_Form {
  • wp-libre-form/trunk/classes/class-wplf-polylang.php

    r1734198 r1742466  
    8888
    8989    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      }
    9195      return $array;
    9296    }
  • wp-libre-form/trunk/readme.txt

    r1734198 r1742466  
    55Requires at least: 4.2
    66Tested up to: 4.7.4
    7 Stable tag: 1.4.1
     7Stable tag: 1.4.2
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • wp-libre-form/trunk/wp-libre-form.php

    r1734198 r1742466  
    44 * Plugin URI: https://github.com/anttiviljami/wp-libre-form
    55 * Description: A minimal HTML form builder for WordPress; made for developers
    6  * Version: 1.4.1
     6 * Version: 1.4.2
    77 * Author: @anttiviljami
    88 * Author URI: https://github.com/anttiviljami/
     
    3232if ( ! class_exists( 'WP_Libre_Form' ) ) :
    3333
    34 define( 'WPLF_VERSION', '1.4.1' );
     34define( 'WPLF_VERSION', '1.4.2' );
    3535
    3636class WP_Libre_Form {
Note: See TracChangeset for help on using the changeset viewer.