Plugin Directory

Changeset 1913477


Ignore:
Timestamp:
07/23/2018 11:41:51 AM (8 years ago)
Author:
wilsos6
Message:

Version 2.2.1 commit

Location:
joy-of-text/trunk
Files:
2 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • joy-of-text/trunk/classes/class-jot-plugin-admin.php

    r1904319 r1913477  
    383383            $input = $input ? $input : array();
    384384           
    385             // Trim Twilio details
    386             $input['jot-accountsid-twilio'] = trim($input['jot-accountsid-twilio']);
    387             $input['jot-authsid-twilio'] = trim($input['jot-authsid-twilio']);
    388            
     385            // Trim Twilio details                       
     386            if (isset($input['jot-accountsid-twilio'])) {
     387                $input['jot-accountsid-twilio'] = trim($input['jot-accountsid-twilio']);
     388            }
     389            if (isset($input['jot-authsid-twilio'])) {
     390                $input['jot-authsid-twilio'] = trim($input['jot-authsid-twilio']);           
     391            }
     392                       
    389393            // Get existing settings array
    390394            $smsdetails = get_option('jot-plugin-smsprovider') ? get_option('jot-plugin-smsprovider') : array() ;
  • joy-of-text/trunk/classes/class-jot-plugin-shortcodes.php

    r1904319 r1913477  
    149149                  }
    150150                   
    151                   $subhtml .= "<p>";
     151                  $subhtml .= "<p></p>";
    152152                  $subhtml .= '<div id="jot-gdprnotice">';
    153153                  $subhtml .= $jot_grpgdprtxt_replaced_tags;
     
    185185      $subhtml = '<fieldset class="jot-fieldset">';
    186186      $subhtml .= '<h3 id="jot-confirm-header">' . $jot_grpinvdesc . '</h3>';
    187       $subhtml .= '<p>';
     187      $subhtml .= '<p></p>';
    188188       
    189189      // Name field
     
    194194        $subhtml .= '<label for="jot-subscribe-name">' . $jot_grpinvnametxt . '</label>';
    195195        $subhtml .= '<input id="jot-subscribe-name" name="jot-subscribe-name" maxlength="40" size="40" type="text"/>';
    196         $subhtml .= '<p>';
     196        $subhtml .= '<p></p>';
    197197      } 
    198198     
     
    200200      $subhtml .= '<label for="jot-subscribe-num">' . $jot_grpinvnumtxt . '</label>';
    201201      $subhtml .= '<input id="jot-subscribe-num" name="jot-subscribe-num" maxlength="200" size="40" type="text"/>';
    202       $subhtml .= '<p>';
     202      $subhtml .= '<p></p>';
    203203     
    204204     
     
    223223                   $subhtml .= "<br>";
    224224                  }
    225                   $subhtml .= "</p>";
     225                  $subhtml .= "<p></p>";
    226226                        break;
    227227                case 'select';
     
    247247                  }
    248248                  $subhtml .= "</select>";
    249                   $subhtml .= "</p>";
     249                  $subhtml .= "<p></p>";
    250250                        break;             
    251251                        default:
  • joy-of-text/trunk/joy-of-text.php

    r1904319 r1913477  
    1717 * Plugin URI:        http://www.getcloudsms.com
    1818 * Description:       Send SMS and text-to-voice messages to your customers, subscribers, followers, members and friends.
    19  * Version:           2.2
     19 * Version:           2.2.1
    2020 * Author:            Stuart Wilson
    2121 * Author URI:        http://www.getcloudsms.com
     
    3232  *
    3333  * Version
    34   * 2.2  - Added Answer Phone Detection.
    35   *      - Added GDPR notice on JOTFORM
    36   *      - Added security feature (nonce) to front-end forms.
    37   *      - Added member list refresh button
    38   *      - Fixed EDD licence activation problem.
    39   *      - Added method name to debugging log.
    40   *      - Changed pagesize parameter on Twilio API call to allow up to 1000 Twilio numbers to be retrieved.
    41   *      - Fix php count() warning message
    42   * 2.1  - Fixed Javascript error on multiselector (error was being displayed when multiselect was not present on the page).
    43   *      - Added member download button, to download all existing members to a CSV file.
    44   * 2.0  - Redesigned [jotform] form.
    45   * 1.9  - Added filter on recipients list
    46   *      - Added support for repeating schedules
    47   * 1.8  - Added support Woo notifications extension.
    48   *      - Added support for the Buddypress integration extension.
    49   *      - Added Spambot form fill check.
    50   * 1.7  - Added support for scheduled message plans.
    51   *        Added configuration guidance to the Get Started tab.
    52   *        Various minor bug fixes.
    53   * 1.6  - Changed the layout of the settings pages, to match the Pro layout.
    54   *        Integrated the plugin with the SMS Post Notifications plugin extension.
    55   *        Improved documentation.
    56   * 1.5  - Added support for the Woocommerce extension. Allowing customer details from Woocommerce to be pulled into JOT.
    57   * 1.4  - Added support for the message scheduler extension
    58   * 1.3  - Included number validation. A check is made with Twilio to ensure that each number added is a valid number.
    59   * 1.2  - Included the option to change the voice and language of the text-to-voice messaging feature.
    60   * 1.1  - Added support for localization and included a Vietnamese translation.
    61   *        Fixed problem with the inital activation of the plugin.
     34  * 2.2.1 - Fixed problem where Twilio account details were being deleted from Settings
     35  *       - Corrected HTML generated for the JOTFORM
     36  * 2.2   - Added Answer Phone Detection.
     37  *       - Added GDPR notice on JOTFORM
     38  *       - Added security feature (nonce) to front-end forms.
     39  *       - Added member list refresh button
     40  *       - Fixed EDD licence activation problem.
     41  *       - Added method name to debugging log.
     42  *       - Changed pagesize parameter on Twilio API call to allow up to 1000 Twilio numbers to be retrieved.
     43  *       - Fix php count() warning message
     44  * 2.1   - Fixed Javascript error on multiselector (error was being displayed when multiselect was not present on the page).
     45  *       - Added member download button, to download all existing members to a CSV file.
     46  * 2.0   - Redesigned [jotform] form.
     47  * 1.9   - Added filter on recipients list
     48  *       - Added support for repeating schedules
     49  * 1.8   - Added support Woo notifications extension.
     50  *       - Added support for the Buddypress integration extension.
     51  *       - Added Spambot form fill check.
     52  * 1.7   - Added support for scheduled message plans.
     53  *         Added configuration guidance to the Get Started tab.
     54  *         Various minor bug fixes.
     55  * 1.6   - Changed the layout of the settings pages, to match the Pro layout.
     56  *         Integrated the plugin with the SMS Post Notifications plugin extension.
     57  *         Improved documentation.
     58  * 1.5   - Added support for the Woocommerce extension. Allowing customer details from Woocommerce to be pulled into JOT.
     59  * 1.4   - Added support for the message scheduler extension
     60  * 1.3   - Included number validation. A check is made with Twilio to ensure that each number added is a valid number.
     61  * 1.2   - Included the option to change the voice and language of the text-to-voice messaging feature.
     62  * 1.1   - Added support for localization and included a Vietnamese translation.
     63  *         Fixed problem with the inital activation of the plugin.
    6264  *
    6365  */
     
    109111            $this->product = "JOT Lite";                       
    110112            $this->token = 'jot-plugin';
    111             $this->version = '2.2';
     113            $this->version = '2.2.1';
    112114            $this->debug = false;           
    113115           
  • joy-of-text/trunk/readme.txt

    r1904319 r1913477  
    220220== Changelog ==
    221221
     222= 2.2.1 =
     223* Fixed problem where Twilio account details were being deleted from Settings
     224* Corrected HTML generated for the JOTFORM
     225
    222226= 2.2 =
    223227* Added Answer Phone Detection.
     
    322326== Upgrade Notice ==
    323327
    324 = 2.2 =
    325 * Added Answer Phone Detection.
    326 * Added GDPR notice on JOTFORM
    327 * Added security feature (nonce) to front-end forms.
    328 * Added member list refresh button
    329 * Added method name to debugging log.
    330 * Changed pagesize parameter on Twilio API call to allow up to 1000 Twilio numbers to be retrieved.
    331 * Fixed EDD licence activation problem.
    332 * Fixed PHP count() warning message.
     328= 2.2.1 =
     329* Fixed problem where Twilio account details were being deleted from Settings
     330* Corrected HTML generated for the JOTFORM
Note: See TracChangeset for help on using the changeset viewer.