Plugin Directory

Changeset 1061441


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

4.9.27

  • Added: You can now easily rename the TITLE and YOUR MESSAGE form fields from the settings, custom fields tab.
Location:
wpsc-support-tickets
Files:
116 added
3 edited

Legend:

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

    r1050390 r1061441  
    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/readme.txt</file>
    89        </group>
    910    </open-files>
  • wpsc-support-tickets/trunk/readme.txt

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

    r1050390 r1061441  
    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.26
     6  Version: 4.9.27
    77  Author: IndieDevBundle.com
    88  Author URI: URI: http://indiedevbundle.com/app/idb-ultimate-wordpress-bundle/#idbsupporttickets
     
    1212
    1313/*
    14   Copyright 2012, 2013, 2014 Jeff Quindlen  (email : blacklodgegames@gmail.com)
     14  Copyright 2012, 2013, 2014, 2015 Jeff Quindlen  (email : blacklodgegames@gmail.com)
    1515
    1616  This library is free software; you can redistribute it and/or modify it under the terms
     
    415415                'disable_all_emails' => 'false',
    416416                'override_wordpress_email' => 'false',
    417                 'overrides_email' => get_bloginfo('admin_email')
     417                'overrides_email' => get_bloginfo('admin_email'),
     418                'custom_title' => __('Title', 'wpsc-support-tickets'),
     419                'custom_message' => __('Your message', 'wpsc-support-tickets')
    418420            );             
    419421           
     
    558560                    $devOptions['overrides_email'] = esc_sql($_POST['overrides_email']);
    559561                }               
     562                if(isset($_POST['custom_title'])) {
     563                    $devOptions['custom_title'] = esc_sql($_POST['custom_title']);
     564                }
     565                if(isset($_POST['custom_message'])) {
     566                    $devOptions['custom_message'] = esc_sql($_POST['custom_message']);
     567                }               
    560568               
    561569               
     
    960968                </select>
    961969                </p>               
     970               
     971                <strong>' , __('Change TITLE to', 'wpsc-support-tickets') , ':</strong> ' , __('By default, a user must fill out a title when submitting a ticket.  This setting lets you easily change the name of the word TITLE so that you word this appropriately for your situation.', 'wpsc-support-tickets') , '<br /><input name="custom_title" value="' . $devOptions['custom_title'] . '" style="width:95%;" /><br /><br />
     972               
     973                <strong>' , __('Change MESSAGE to', 'wpsc-support-tickets') , ':</strong> ' , __('By default, a user must fill out a message when submitting a ticket.  This setting lets you easily change the name of the words YOUR MESSAGE so that you word this appropriately for your situation.', 'wpsc-support-tickets') , '<br /><input name="custom_message" value="' . $devOptions['custom_message'] . '" style="width:95%;" /><br /><br />
     974               
     975
    962976                <br /><br /><br /><br />
    963977            </td></tr></table>
     
    14431457            }                           
    14441458
    1445             echo  '<tr><td><h3>' , __('Title', 'wpsc-support-tickets') , '</h3><input type="text" name="wpscst_title" id="wpscst_title" value=""  ';
     1459            echo  '<tr><td><h3>' , $devOptions['custom_title'] , '</h3><input type="text" name="wpscst_title" id="wpscst_title" value=""  ';
    14461460            if ($devOptions['disable_inline_styles'] == 'false') {
    14471461                echo 'style="width:100%;margin:12px;"';
     
    14521466            }                           
    14531467
    1454             echo  '<tr><td><h3>' . __('Your message', 'wpsc-support-tickets') . '</h3><div id="wpscst_nic_panel" ';
     1468            echo  '<tr><td><h3>' , $devOptions['custom_message'] , '</h3><div id="wpscst_nic_panel" ';
    14551469            if ($devOptions['disable_inline_styles'] == 'false') {
    14561470                echo 'style="display:block;width:100%;"';
     
    19441958                            }                           
    19451959                           
    1946                             $output .= '<tr><td><h3>' . __('Title', 'wpsc-support-tickets') . '</h3><input type="text" name="wpscst_title" id="wpscst_title" value=""  ';
     1960                            $output .= '<tr><td><h3>' . $devOptions['custom_title'] . '</h3><input type="text" name="wpscst_title" id="wpscst_title" value=""  ';
    19471961                            if ($devOptions['disable_inline_styles'] == 'false') {
    19481962                                $output.='style="width:100%"';
     
    19531967                            }                           
    19541968                           
    1955                             $output .= '<tr><td><h3>' . __('Your message', 'wpsc-support-tickets') . '</h3><div id="wpscst_nic_panel" ';
     1969                            $output .= '<tr><td><h3>' . $devOptions['custom_message'] . '</h3><div id="wpscst_nic_panel" ';
    19561970                            if ($devOptions['disable_inline_styles'] == 'false') {
    19571971                                $output.='style="display:block;width:100%;"';
Note: See TracChangeset for help on using the changeset viewer.