Plugin Directory

Changeset 1692824


Ignore:
Timestamp:
07/08/2017 05:01:19 AM (9 years ago)
Author:
eoni
Message:

Preparing for 1.1.7 release

Location:
wp-tipi/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wp-tipi/trunk/README.txt

    r1692810 r1692824  
    66Requires at least: 4.4
    77Tested up to: 4.8
    8 Stable tag: 1.1.6
     8Stable tag: 1.1.7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353== Changelog ==
    5454
     55= 1.1.7 - 2017-07-08 =
     56
     57* Fix - Check if option is an array
     58
    5559= 1.1.6 =
    5660
  • wp-tipi/trunk/changelog.txt

    r1692810 r1692824  
    11== Changelog ==
     2
     3= 1.1.7 - 2017-07-08 =
     4
     5* Fix - Check if option is an array
    26
    37= 1.1.6 - 2017-07-08 =
     
    59* Add -  Set default option on activate plugin
    610
    7 = 1.1.5 - 2017-07-08 =
     11= 1.1.5 - 2017-07-07 =
    812
    913* Fix -  Bad french translation filename
  • wp-tipi/trunk/includes/class-tipi.php

    r1692810 r1692824  
    7474
    7575        $this->plugin_name = 'tipi';
    76         $this->version = '1.1.6';
     76        $this->version = '1.1.7';
    7777        $this->tipi_gateway_settings_options = apply_filters('tipi_gateway_settings_options',get_option( 'tipi_gateway_settings_option_name' ));
    7878        $this->tipi_plugin_url = apply_filters('tipi_gateway_plugin_url',plugin_dir_url(dirname(__FILE__)));
  • wp-tipi/trunk/public/class-tipi-public.php

    r1691217 r1692824  
    114114
    115115    public function is_tipi_page(){
    116         if ( array_key_exists('where_to_display_it_2',$this->tipi_gateway_settings_options) && is_page($this->tipi_gateway_settings_options['where_to_display_it_2']) ) return true;
     116        if (is_array($this->tipi_gateway_settings_options) && array_key_exists('where_to_display_it_2',$this->tipi_gateway_settings_options) && is_page($this->tipi_gateway_settings_options['where_to_display_it_2']) ) return true;
    117117        else return false;
    118118    }
  • wp-tipi/trunk/tipi.php

    r1692810 r1692824  
    1717 * Plugin URI:        https://www.patricelaurent.net/portfolio/e-commerce/tipi-pour-wordpress/
    1818 * Description:       This plugin allow you tu use the TIPI Gateway allowing people to pay by credit card dierctly from your site.
    19  * Version:           1.1.6
     19 * Version:           1.1.7
    2020 * Author:            Patrice LAURENT
    2121 * Author URI:        https://www.patricelaurent.net
Note: See TracChangeset for help on using the changeset viewer.