Plugin Directory

Changeset 2782083


Ignore:
Timestamp:
09/08/2022 04:56:50 PM (4 years ago)
Author:
tapchat
Message:

Code and css patch

Location:
tapchat
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • tapchat/tags/1.0.3/assets/css/tapchat.css

    r2781465 r2782083  
    685685
    686686.animate-bounce {
    687   -webkit-animation: bounce 1s infinite;
    688           animation: bounce 1s infinite;
     687  -webkit-animation: bounce 1s 2;
     688          animation: bounce 1s 2;
    689689}
    690690
  • tapchat/tags/1.0.3/includes/class-tapchat.php

    r2781465 r2782083  
    113113                    if(time()-strtotime($fetch_user_request->updated_at)>180):
    114114                        $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);
    117117                    else:
    118118                        $error = "Waiting for Operator to respond your request.";
  • tapchat/tags/1.0.3/readme.txt

    r2782065 r2782083  
    5454= 1.0.3 =
    5555* update Mobile push notification
     56* css fixes
     57* Pending call fix
    5658= 1.0.2 =
    5759* update Mobile API
  • tapchat/trunk/assets/css/tapchat.css

    r2736956 r2782083  
    685685
    686686.animate-bounce {
    687   -webkit-animation: bounce 1s infinite;
    688           animation: bounce 1s infinite;
     687  -webkit-animation: bounce 1s 2;
     688          animation: bounce 1s 2;
    689689}
    690690
  • tapchat/trunk/includes/class-tapchat.php

    r2781465 r2782083  
    113113                    if(time()-strtotime($fetch_user_request->updated_at)>180):
    114114                        $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);
    117117                    else:
    118118                        $error = "Waiting for Operator to respond your request.";
  • tapchat/trunk/readme.txt

    r2781467 r2782083  
    5454= 1.0.3 =
    5555* update Mobile push notification
     56* css fixes
     57* Pending call fix
    5658= 1.0.2 =
    5759* update Mobile API
Note: See TracChangeset for help on using the changeset viewer.