Changeset 1692824
- Timestamp:
- 07/08/2017 05:01:19 AM (9 years ago)
- Location:
- wp-tipi/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
changelog.txt (modified) (2 diffs)
-
includes/class-tipi.php (modified) (1 diff)
-
public/class-tipi-public.php (modified) (1 diff)
-
tipi.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-tipi/trunk/README.txt
r1692810 r1692824 6 6 Requires at least: 4.4 7 7 Tested up to: 4.8 8 Stable tag: 1.1. 68 Stable tag: 1.1.7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 == Changelog == 54 54 55 = 1.1.7 - 2017-07-08 = 56 57 * Fix - Check if option is an array 58 55 59 = 1.1.6 = 56 60 -
wp-tipi/trunk/changelog.txt
r1692810 r1692824 1 1 == Changelog == 2 3 = 1.1.7 - 2017-07-08 = 4 5 * Fix - Check if option is an array 2 6 3 7 = 1.1.6 - 2017-07-08 = … … 5 9 * Add - Set default option on activate plugin 6 10 7 = 1.1.5 - 2017-07-0 8=11 = 1.1.5 - 2017-07-07 = 8 12 9 13 * Fix - Bad french translation filename -
wp-tipi/trunk/includes/class-tipi.php
r1692810 r1692824 74 74 75 75 $this->plugin_name = 'tipi'; 76 $this->version = '1.1. 6';76 $this->version = '1.1.7'; 77 77 $this->tipi_gateway_settings_options = apply_filters('tipi_gateway_settings_options',get_option( 'tipi_gateway_settings_option_name' )); 78 78 $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 114 114 115 115 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; 117 117 else return false; 118 118 } -
wp-tipi/trunk/tipi.php
r1692810 r1692824 17 17 * Plugin URI: https://www.patricelaurent.net/portfolio/e-commerce/tipi-pour-wordpress/ 18 18 * 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. 619 * Version: 1.1.7 20 20 * Author: Patrice LAURENT 21 21 * Author URI: https://www.patricelaurent.net
Note: See TracChangeset
for help on using the changeset viewer.