Plugin Directory

Changeset 1061449


Ignore:
Timestamp:
01/06/2015 04:41:48 PM (11 years ago)
Author:
jquindlen
Message:

4.9.28

  • Fixed: Suppressed a PHP warning
Location:
wpsc-support-tickets
Files:
116 added
2 edited

Legend:

Unmodified
Added
Removed
  • wpsc-support-tickets/trunk/readme.txt

    r1061441 r1061449  
    55Requires at least: 3.5.0
    66Tested up to: 4.2
    7 Stable tag: 4.9.27
     7Stable tag: 4.9.28
    88
    99== Description ==
     
    109109* Updated: Added randomized addition to filenames & updated the file upload presentation
    110110
     111= 4.9.28 =
     112* Fixed: Suppressed a PHP warning
     113
    111114= 4.9.27 =
    112115* Added: You can now easily rename the TITLE and YOUR MESSAGE form fields from the settings, custom fields tab.
  • wpsc-support-tickets/trunk/wpsc-support-tickets.php

    r1061441 r1061449  
    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.27
     6  Version: 4.9.28
    77  Author: IndieDevBundle.com
    88  Author URI: URI: http://indiedevbundle.com/app/idb-ultimate-wordpress-bundle/#idbsupporttickets
     
    202202                        $wpsct_required_item = '<ins><div class="wpst-required-symbol" ' . $wpsct_style_inline . '>* </div></ins>';
    203203                    }
    204                     $prev_val = $_SESSION['wpsct_custom_'.$field['primkey']];
     204                    @$prev_val = $_SESSION['wpsct_custom_'.$field['primkey']];
    205205                    foreach ($wpsct_text_fields as $wpsct_text_field) {
    206206                        if($specific_items[2]==$wpsct_text_field) {
    207                             $output .= '<tr><td><h3>'. $specific_items[0] . $wpsct_required_item
     207                            @$output .= '<tr><td><h3>'. $specific_items[0] . $wpsct_required_item
    208208                                . '</h3><input  id="wpsct_custom_'.$field['primkey'].'" type="text"  value="'
    209209                                . $_SESSION['wpsct_custom_'.$field['primkey']] .'" name="wpsct_custom_'.$field['primkey'].'" '
Note: See TracChangeset for help on using the changeset viewer.