Plugin Directory

Changeset 1081105


Ignore:
Timestamp:
02/02/2015 06:21:37 PM (11 years ago)
Author:
jquindlen
Message:

4.9.38

  • Fixed: Patched a problem for certain timezones where Last Updated by an Admin was not changing even if an admin was the last to reply
Location:
wpsc-support-tickets
Files:
117 added
3 edited

Legend:

Unmodified
Added
Removed
  • wpsc-support-tickets/trunk/nbproject/private/private.xml

    r1070055 r1081105  
    66        <group>
    77            <file>file:/D:/PORTABLES/EasyPHP-5.3.3/www/wordpress2/wp-content/plugins/wpsc-support-tickets/wpsc-support-tickets.php</file>
    8             <file>file:/D:/PORTABLES/EasyPHP-5.3.3/www/wordpress2/wp-content/plugins/wpsc-support-tickets/css/custom-theme/jquery-ui-1.10.3.custom.css</file>
    98            <file>file:/D:/PORTABLES/EasyPHP-5.3.3/www/wordpress2/wp-content/plugins/wpsc-support-tickets/readme.txt</file>
    109        </group>
  • wpsc-support-tickets/trunk/readme.txt

    r1079876 r1081105  
    55Requires at least: 3.5.0
    66Tested up to: 4.2
    7 Stable tag: 4.9.37
     7Stable tag: 4.9.38
    88
    99== Description ==
     
    108108* Updated: Added randomized addition to filenames & updated the file upload presentation (added 4.9.29 if you turn on beta testing)
    109109
     110= 4.9.38 =
     111* Fixed: Patched a problem for certain timezones where Last Updated by an Admin was not changing even if an admin was the last to reply
     112
    110113= 4.9.37 =
    111114* Added: New "Show Advanced Settings" option. This is set to false by default, and will hide several options that do not often need to be edited.
  • wpsc-support-tickets/trunk/wpsc-support-tickets.php

    r1079876 r1081105  
    44  Plugin URI: http://indiedevbundle.com/app/idb-ultimate-wordpress-bundle/#idbsupporttickets
    55  Description: An open source help desk and support ticket system for Wordpress using jQuery. Easy to use for both users & admins.
    6   Version: 4.9.37
     6  Version: 4.9.38
    77  Author: IndieDevBundle.com
    88  Author URI: URI: http://indiedevbundle.com/app/idb-ultimate-wordpress-bundle/#idbsupporttickets
     
    29742974                if($_POST['wpscst_is_staff_reply']=='yes' && current_user_can('manage_wpsct_support_tickets')) {
    29752975                        // This is a staff reply from the admin panel
    2976                         $updateSQL = "UPDATE `{$wpdb->prefix}wpscst_tickets` SET `last_updated` = '".current_time( 'timestamp' )."', `last_staff_reply` = '".time()."' WHERE `primkey` ='{$primkey}';";
     2976                        $updateSQL = "UPDATE `{$wpdb->prefix}wpscst_tickets` SET `last_updated` = '".current_time( 'timestamp' )."', `last_staff_reply` = '".current_time( 'timestamp' )."' WHERE `primkey` ='{$primkey}';";
    29772977                } else {
    29782978                        // This is a reply from the front end
     
    30003000                            $message .= $cleaned_message;
    30013001                        }           
    3002                         $headers = '';
    3003 
    3004                         wpscSupportTickets_mail($to, $subject, $message, $headers);
     3002
     3003                        wpscSupportTickets_mail($to, $subject, $message);
    30053004                    }
    30063005
     
    30263025                            $message .= $cleaned_message;
    30273026                        }
    3028                         $headers = '';
    3029 
    3030                         wpscSupportTickets_mail($to, $subject, $message, $headers);
     3027
     3028                        wpscSupportTickets_mail($to, $subject, $message);
    30313029                    }
    30323030                }
Note: See TracChangeset for help on using the changeset viewer.