Changeset 2143094
- Timestamp:
- 08/21/2019 11:11:10 AM (7 years ago)
- Location:
- yoti/trunk
- Files:
-
- 4 edited
-
YotiAdmin.php (modified) (1 diff)
-
class.yoti.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
yoti.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
yoti/trunk/YotiAdmin.php
r2135092 r2143094 84 84 $this->setPostData(); 85 85 86 $data['yoti_app_id'] = $this->postVar('yoti_app_id');87 $data['yoti_scenario_id'] = $this->postVar('yoti_scenario_id');88 $data['yoti_sdk_id'] = $this->postVar('yoti_sdk_id');89 $data['yoti_company_name'] = $this->postVar('yoti_company_name');86 $data['yoti_app_id'] = trim($this->postVar('yoti_app_id')); 87 $data['yoti_scenario_id'] = trim($this->postVar('yoti_scenario_id')); 88 $data['yoti_sdk_id'] = trim($this->postVar('yoti_sdk_id')); 89 $data['yoti_company_name'] = trim($this->postVar('yoti_company_name')); 90 90 $data['yoti_delete_pem'] = $this->postVar('yoti_delete_pem') ? TRUE : FALSE; 91 91 $data['yoti_only_existing'] = $this->postVar('yoti_only_existing'); -
yoti/trunk/class.yoti.php
r2135092 r2143094 258 258 { 259 259 wp_enqueue_script('yoti-asset-js', YotiHelper::YOTI_SDK_JAVASCRIPT_LIBRARY, [], NULL, TRUE); 260 wp_add_inline_script('yoti-asset-js', 'window.Yoti.Share.init(yotiConfig);'); 260 wp_add_inline_script('yoti-asset-js', " 261 if (typeof yotiConfig != 'undefined') { 262 window.Yoti.Share.init(yotiConfig); 263 }"); 261 264 } 262 265 -
yoti/trunk/readme.txt
r2135092 r2143094 6 6 Tested up to: 5.2 7 7 Requires PHP: 5.6 8 Stable tag: 1.4. 08 Stable tag: 1.4.1 9 9 License: GNU v3 10 10 License URI: https://www.gnu.org/licenses/gpl.txt … … 81 81 Here you can find the changes for each version: 82 82 83 1.4.1 84 85 Release Date - 21 August 2019 86 87 * Check that button has been configured before initialising 88 * Text fields are now trimmed to remove any leading/trailing whitespace 89 83 90 1.4.0 84 91 -
yoti/trunk/yoti.php
r2135092 r2143094 5 5 Plugin URI: https://wordpress.org/plugins/yoti/ 6 6 Description: Let Yoti users quickly register on your site. 7 Version: 1.4. 07 Version: 1.4.1 8 8 Author: Yoti SDK. 9 9 Author URI: https://yoti.com
Note: See TracChangeset
for help on using the changeset viewer.