Changeset 2723111
- Timestamp:
- 05/13/2022 04:21:18 AM (4 years ago)
- Location:
- the-tech-tribe/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
app/Dashboard.php (modified) (6 diffs)
-
the-tribal-plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
the-tech-tribe/trunk/README.txt
r2701685 r2723111 5 5 Requires at least: 5.0 6 6 Tested up to: 5.9.2 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 60 60 == Changelog == 61 61 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 62 65 = 1.1.0 - March 03, 2022 = 63 66 * 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 45 45 { 46 46 $retUpdate = $this->update(); 47 47 48 48 if($retUpdate) { 49 49 $alertArgs = [ … … 114 114 115 115 $updateSync = $this->updateSync($_POST); 116 116 117 if($updateSync){ 117 118 return $updateSync; … … 120 121 if( isset($_POST['ttt_api_key']) && trim($_POST['ttt_api_key']) != '' ) { 121 122 $updateApiKey = $this->updateAPIKey($_POST); 123 122 124 if( $updateApiKey ) 123 125 { … … 192 194 private function updateSync($request) 193 195 { 196 194 197 if( $_POST && isset($request['action']) && $request['action'] == 'ttt_update_dashboard_user' ){ 195 198 $arrReturnMsg['action'] = true; … … 259 262 $returnMsg = $ret->data['msg'] ?? ''; 260 263 $returnMsgHeader = $ret->data['msg-header'] ?? ''; 261 264 262 265 if(isset($ret->data['code']) && ! $ret->data['success']) { 263 266 $returnMsg = isset($ret->data['msg']['errors']['invalid'][0]) ? $ret->data['msg']['errors']['invalid'][0] : $ret->data['msg']; … … 289 292 if(!isset($ret->data['code']) && !is_array($ret->data)){ 290 293 $returnMsg = $ret->data; 291 292 $getTimeOutErrror = tttThrow TimeOutError($returnMsg);294 295 $getTimeOutErrror = tttThrowGeneralErrorMsg($returnMsg); 293 296 if($getTimeOutErrror){ 294 297 $returnMsgHeader = $getTimeOutErrror['header']; -
the-tech-tribe/trunk/the-tribal-plugin.php
r2701685 r2723111 17 17 * Plugin URI: thetechtribe.com 18 18 * Description: This plugin is for members of The Tech Tribe to manage features such as Automated Blog Posting etc. 19 * Version: 1.1. 019 * Version: 1.1.1 20 20 * Author: The Tech Tribe 21 21 * Author URI: https://thetechtribe.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.1. 0' );38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.1.1' ); 39 39 40 40 //date_default_timezone_set(wp_timezone_string());
Note: See TracChangeset
for help on using the changeset viewer.