Plugin Directory

Changeset 1662968


Ignore:
Timestamp:
05/23/2017 09:06:28 AM (9 years ago)
Author:
wordgenie
Message:

refs 1.0.6 : Fixed domain validation issue

Location:
files-addon-for-event-espresso-4/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • files-addon-for-event-espresso-4/trunk/EE_FILE_Validation_Strategy.php

    r1617631 r1662968  
    3535            $allowed =  array('gif','png' ,'jpg','jpeg','bmp');
    3636            $extn =  $filetype['ext'];
    37             if (!in_array($extn, $allowed) || $server != $host) {
     37            if (!in_array($extn, $allowed) || strpos($host,$server) === FALSE) {
    3838                throw new EE_Validation_Error($this->get_validation_error_message(), 'regex');
    3939            }
  • files-addon-for-event-espresso-4/trunk/eea-file.php

    r1617631 r1662968  
    33 * Plugin Name: Files Addon for Event Espresso 4
    44 * 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: Aparna
     5 * Author: aparna249
    66 * License:GPL2
    7  * Version: 1.0.5
     7 * Version: 1.0.6
    88 * TextDomain:  wordfile
    99 */
    1010// define versions and this file
    1111define('EE_FILE_CORE_VERSION_REQUIRED', '4.8.0.rc.0000');
    12 define('EE_FILE_VERSION', '1.0.5');
     12define('EE_FILE_VERSION', '1.0.6');
    1313define('EE_FILE_PLUGIN_FILE', __FILE__);
    1414
  • files-addon-for-event-espresso-4/trunk/readme.txt

    r1617631 r1662968  
    11=== Files Addon for Event Espresso 4 ===
    2 Contributors: Aparna,WordGeniee
     2Contributors: aparna249,WordGeniee
    33Tags: Event espresso, file , upload file, questions, form, events
    44Requires at least: 4.1
    55Tested up to: WordPress 4.7.3 and Event Espresso 4.9.34
    66Requires Event espresso version: 4.8.0
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88License: GPL2
    99
     
    5959
    6060== Changelog ==
     61= 1.0.6 =
     62
     631. Fixed domain validation issue
     64
    6165= 1.0.5 =
    6266
Note: See TracChangeset for help on using the changeset viewer.