Changeset 1913477
- Timestamp:
- 07/23/2018 11:41:51 AM (8 years ago)
- Location:
- joy-of-text/trunk
- Files:
-
- 2 added
- 2 deleted
- 4 edited
-
classes/class-jot-plugin-admin.php (modified) (1 diff)
-
classes/class-jot-plugin-shortcodes.php (modified) (6 diffs)
-
css/jot-2-2-1.css (added)
-
css/jot-2-2.css (deleted)
-
joy-of-text.php (modified) (3 diffs)
-
js/jot-messenger-2-2-1.js (added)
-
js/jot-messenger-2-2.js (deleted)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
joy-of-text/trunk/classes/class-jot-plugin-admin.php
r1904319 r1913477 383 383 $input = $input ? $input : array(); 384 384 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 389 393 // Get existing settings array 390 394 $smsdetails = get_option('jot-plugin-smsprovider') ? get_option('jot-plugin-smsprovider') : array() ; -
joy-of-text/trunk/classes/class-jot-plugin-shortcodes.php
r1904319 r1913477 149 149 } 150 150 151 $subhtml .= "<p> ";151 $subhtml .= "<p></p>"; 152 152 $subhtml .= '<div id="jot-gdprnotice">'; 153 153 $subhtml .= $jot_grpgdprtxt_replaced_tags; … … 185 185 $subhtml = '<fieldset class="jot-fieldset">'; 186 186 $subhtml .= '<h3 id="jot-confirm-header">' . $jot_grpinvdesc . '</h3>'; 187 $subhtml .= '<p> ';187 $subhtml .= '<p></p>'; 188 188 189 189 // Name field … … 194 194 $subhtml .= '<label for="jot-subscribe-name">' . $jot_grpinvnametxt . '</label>'; 195 195 $subhtml .= '<input id="jot-subscribe-name" name="jot-subscribe-name" maxlength="40" size="40" type="text"/>'; 196 $subhtml .= '<p> ';196 $subhtml .= '<p></p>'; 197 197 } 198 198 … … 200 200 $subhtml .= '<label for="jot-subscribe-num">' . $jot_grpinvnumtxt . '</label>'; 201 201 $subhtml .= '<input id="jot-subscribe-num" name="jot-subscribe-num" maxlength="200" size="40" type="text"/>'; 202 $subhtml .= '<p> ';202 $subhtml .= '<p></p>'; 203 203 204 204 … … 223 223 $subhtml .= "<br>"; 224 224 } 225 $subhtml .= "< /p>";225 $subhtml .= "<p></p>"; 226 226 break; 227 227 case 'select'; … … 247 247 } 248 248 $subhtml .= "</select>"; 249 $subhtml .= "< /p>";249 $subhtml .= "<p></p>"; 250 250 break; 251 251 default: -
joy-of-text/trunk/joy-of-text.php
r1904319 r1913477 17 17 * Plugin URI: http://www.getcloudsms.com 18 18 * 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 20 20 * Author: Stuart Wilson 21 21 * Author URI: http://www.getcloudsms.com … … 32 32 * 33 33 * 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. 62 64 * 63 65 */ … … 109 111 $this->product = "JOT Lite"; 110 112 $this->token = 'jot-plugin'; 111 $this->version = '2.2 ';113 $this->version = '2.2.1'; 112 114 $this->debug = false; 113 115 -
joy-of-text/trunk/readme.txt
r1904319 r1913477 220 220 == Changelog == 221 221 222 = 2.2.1 = 223 * Fixed problem where Twilio account details were being deleted from Settings 224 * Corrected HTML generated for the JOTFORM 225 222 226 = 2.2 = 223 227 * Added Answer Phone Detection. … … 322 326 == Upgrade Notice == 323 327 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.