Changeset 1662968
- Timestamp:
- 05/23/2017 09:06:28 AM (9 years ago)
- Location:
- files-addon-for-event-espresso-4/trunk
- Files:
-
- 3 edited
-
EE_FILE_Validation_Strategy.php (modified) (1 diff)
-
eea-file.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
files-addon-for-event-espresso-4/trunk/EE_FILE_Validation_Strategy.php
r1617631 r1662968 35 35 $allowed = array('gif','png' ,'jpg','jpeg','bmp'); 36 36 $extn = $filetype['ext']; 37 if (!in_array($extn, $allowed) || $server != $host) {37 if (!in_array($extn, $allowed) || strpos($host,$server) === FALSE) { 38 38 throw new EE_Validation_Error($this->get_validation_error_message(), 'regex'); 39 39 } -
files-addon-for-event-espresso-4/trunk/eea-file.php
r1617631 r1662968 3 3 * Plugin Name: Files Addon for Event Espresso 4 4 4 * Description: Files add on plugin allows to create file type question in event registration form. Attendees will be able to upload files while registering for an event. 5 * Author: Aparna5 * Author: aparna249 6 6 * License:GPL2 7 * Version: 1.0. 57 * Version: 1.0.6 8 8 * TextDomain: wordfile 9 9 */ 10 10 // define versions and this file 11 11 define('EE_FILE_CORE_VERSION_REQUIRED', '4.8.0.rc.0000'); 12 define('EE_FILE_VERSION', '1.0. 5');12 define('EE_FILE_VERSION', '1.0.6'); 13 13 define('EE_FILE_PLUGIN_FILE', __FILE__); 14 14 -
files-addon-for-event-espresso-4/trunk/readme.txt
r1617631 r1662968 1 1 === Files Addon for Event Espresso 4 === 2 Contributors: Aparna,WordGeniee2 Contributors: aparna249,WordGeniee 3 3 Tags: Event espresso, file , upload file, questions, form, events 4 4 Requires at least: 4.1 5 5 Tested up to: WordPress 4.7.3 and Event Espresso 4.9.34 6 6 Requires Event espresso version: 4.8.0 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 License: GPL2 9 9 … … 59 59 60 60 == Changelog == 61 = 1.0.6 = 62 63 1. Fixed domain validation issue 64 61 65 = 1.0.5 = 62 66
Note: See TracChangeset
for help on using the changeset viewer.