Changeset 2782083
- Timestamp:
- 09/08/2022 04:56:50 PM (4 years ago)
- Location:
- tapchat
- Files:
-
- 6 edited
-
tags/1.0.3/assets/css/tapchat.css (modified) (1 diff)
-
tags/1.0.3/includes/class-tapchat.php (modified) (1 diff)
-
tags/1.0.3/readme.txt (modified) (1 diff)
-
trunk/assets/css/tapchat.css (modified) (1 diff)
-
trunk/includes/class-tapchat.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tapchat/tags/1.0.3/assets/css/tapchat.css
r2781465 r2782083 685 685 686 686 .animate-bounce { 687 -webkit-animation: bounce 1s infinite;688 animation: bounce 1s infinite;687 -webkit-animation: bounce 1s 2; 688 animation: bounce 1s 2; 689 689 } 690 690 -
tapchat/tags/1.0.3/includes/class-tapchat.php
r2781465 r2782083 113 113 if(time()-strtotime($fetch_user_request->updated_at)>180): 114 114 $where = array('customer_id' => $guest_id,'operator_id' => $operator_id,'request_status' => 'pending'); 115 $ data = array("request_status"=>"missed");116 $this->_wpdb->update($this->dbCustomerRequestTable, $ data, $where);115 $update_data = array("request_status"=>"missed"); 116 $this->_wpdb->update($this->dbCustomerRequestTable, $update_data, $where); 117 117 else: 118 118 $error = "Waiting for Operator to respond your request."; -
tapchat/tags/1.0.3/readme.txt
r2782065 r2782083 54 54 = 1.0.3 = 55 55 * update Mobile push notification 56 * css fixes 57 * Pending call fix 56 58 = 1.0.2 = 57 59 * update Mobile API -
tapchat/trunk/assets/css/tapchat.css
r2736956 r2782083 685 685 686 686 .animate-bounce { 687 -webkit-animation: bounce 1s infinite;688 animation: bounce 1s infinite;687 -webkit-animation: bounce 1s 2; 688 animation: bounce 1s 2; 689 689 } 690 690 -
tapchat/trunk/includes/class-tapchat.php
r2781465 r2782083 113 113 if(time()-strtotime($fetch_user_request->updated_at)>180): 114 114 $where = array('customer_id' => $guest_id,'operator_id' => $operator_id,'request_status' => 'pending'); 115 $ data = array("request_status"=>"missed");116 $this->_wpdb->update($this->dbCustomerRequestTable, $ data, $where);115 $update_data = array("request_status"=>"missed"); 116 $this->_wpdb->update($this->dbCustomerRequestTable, $update_data, $where); 117 117 else: 118 118 $error = "Waiting for Operator to respond your request."; -
tapchat/trunk/readme.txt
r2781467 r2782083 54 54 = 1.0.3 = 55 55 * update Mobile push notification 56 * css fixes 57 * Pending call fix 56 58 = 1.0.2 = 57 59 * update Mobile API
Note: See TracChangeset
for help on using the changeset viewer.