Plugin Directory

Changeset 2723111


Ignore:
Timestamp:
05/13/2022 04:21:18 AM (4 years ago)
Author:
nigelmoore1
Message:

Release 1.1.1

Location:
the-tech-tribe/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • the-tech-tribe/trunk/README.txt

    r2701685 r2723111  
    55Requires at least: 5.0
    66Tested up to: 5.9.2
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    6060== Changelog ==
    6161
     62= 1.1.1 - May 13, 2022 =
     63* Update Error text to show not just Error but to show general error if the return error is undocumented.
     64
    6265= 1.1.0 - March 03, 2022 =
    6366* Fix the js and css to include only on the The Tech Tribe page only, to avoid conflict on WordPress Customize tool and other potential plugin conflicts.
  • the-tech-tribe/trunk/app/Dashboard.php

    r2627939 r2723111  
    4545    {
    4646        $retUpdate = $this->update();
    47        
     47
    4848        if($retUpdate) {
    4949            $alertArgs = [
     
    114114
    115115            $updateSync = $this->updateSync($_POST);
     116                       
    116117            if($updateSync){
    117118                return $updateSync;
     
    120121            if( isset($_POST['ttt_api_key']) && trim($_POST['ttt_api_key']) != '' ) {
    121122                $updateApiKey = $this->updateAPIKey($_POST);
     123
    122124                if( $updateApiKey )
    123125                {
     
    192194    private function updateSync($request)
    193195    {
     196       
    194197        if( $_POST && isset($request['action']) && $request['action'] == 'ttt_update_dashboard_user' ){
    195198            $arrReturnMsg['action'] = true;
     
    259262                $returnMsg = $ret->data['msg'] ?? '';
    260263                $returnMsgHeader = $ret->data['msg-header'] ?? '';
    261 
     264   
    262265                if(isset($ret->data['code']) && ! $ret->data['success']) {
    263266                    $returnMsg = isset($ret->data['msg']['errors']['invalid'][0]) ? $ret->data['msg']['errors']['invalid'][0] : $ret->data['msg'];
     
    289292                if(!isset($ret->data['code']) && !is_array($ret->data)){
    290293                    $returnMsg = $ret->data;
    291                    
    292                     $getTimeOutErrror = tttThrowTimeOutError($returnMsg);
     294
     295                    $getTimeOutErrror = tttThrowGeneralErrorMsg($returnMsg);
    293296                    if($getTimeOutErrror){
    294297                        $returnMsgHeader = $getTimeOutErrror['header'];
  • the-tech-tribe/trunk/the-tribal-plugin.php

    r2701685 r2723111  
    1717 * Plugin URI:        thetechtribe.com
    1818 * Description:       This plugin is for members of The Tech Tribe to manage features such as Automated Blog Posting etc.
    19  * Version:           1.1.0
     19 * Version:           1.1.1
    2020 * Author:            The Tech Tribe
    2121 * Author URI:        https://thetechtribe.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.1.0' );
     38define( 'THE_TRIBAL_PLUGIN_VERSION', '1.1.1' );
    3939
    4040//date_default_timezone_set(wp_timezone_string());
Note: See TracChangeset for help on using the changeset viewer.