Plugin Directory

Changeset 1516246


Ignore:
Timestamp:
10/17/2016 04:27:24 AM (9 years ago)
Author:
paratheme
Message:

version update

Location:
team/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • team/trunk/includes/team-functions.php

    r1492705 r1516246  
    1515function team_update_team_member_social_field(){
    1616   
    17     $class_team_functions = new class_team_functions();
    18    
    19     $team_member_social_field = $class_team_functions->team_member_social_field();
    20    
    21     update_option('team_member_social_field', $team_member_social_field);
    22    
     17    $team_member_social_field = get_option('team_member_social_field');
     18    if(empty($team_member_social_field)){
     19       
     20        $class_team_functions = new class_team_functions();
     21        $team_member_social_field = $class_team_functions->team_member_social_field();
     22        update_option('team_member_social_field', $team_member_social_field);
     23       
     24        }
     25
    2326    }
    2427
  • team/trunk/readme.txt

    r1492705 r1516246  
    55    Requires at least: 3.8
    66    Tested up to: 4.6.1
    7     Stable tag: 1.18
     7    Stable tag: 1.19
    88    License: GPLv2 or later
    99    License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    106106== Changelog ==
    107107
     108    = 1.19 =
     109    * 17/10/2016 fix - team memebr social icon issue fixed.
     110
    108111    = 1.18 =
    109112    * 08/09/2016 fix - team memebr social icon issue fixed.
  • team/trunk/team.php

    r1492705 r1516246  
    44Plugin URI: http://www.pickplugins.com/item/team-responsive-meet-the-team-grid-for-wordpress/
    55Description: Fully responsive and mobile ready meet the team showcase plugin for wordpress.
    6 Version: 1.18
     6Version: 1.19
    77Author: pickplugins
    88Author URI: http://pickplugins.com
     
    3030        define('team_qa_url', 'http://pickplugins.com/questions/' );
    3131        define('team_plugin_name', 'Team' );
    32         define('team_plugin_version', '1.18' );
     32        define('team_plugin_version', '1.19' );
    3333        define('team_customer_type', 'free' );   // pro & free 
    3434        define('team_share_url', 'http://wordpress.org/plugins/team/' );
     
    7070       
    7171        team_update_team_member_social_field();
     72       
     73        // Reset permalink
     74        $team_class_post_types= new team_class_post_types();
     75        $team_class_post_types->team_posttype_team_member();
     76        flush_rewrite_rules();
     77       
    7278       
    7379        do_action( 'team_action_install' );
Note: See TracChangeset for help on using the changeset viewer.