Plugin Directory

Changeset 1359639


Ignore:
Timestamp:
02/27/2016 02:30:12 PM (10 years ago)
Author:
owencutajar
Message:

Bug fixes

Location:
wp-auctions/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-auctions/trunk/readme.txt

    r1214922 r1359639  
    44Tags: auctions,auction,wp auction,auction plugin,wordpress auction,wp auctions,auction script,ebay,ebay auction,bidding
    55Requires at least: 3.8
    6 Tested up to: 4.2.3
     6Tested up to: 4.4.2
    77Stable tag: /trunk/
    88
     
    117117
    118118= 3.6.1 =
     119* Bug fixes
     120
     121= 3.6.1 =
    119122* Fixed languages/ textdomain issue
    120123* Improved some CSS
  • wp-auctions/trunk/wp_auctions.php

    r1214922 r1359639  
    44Plugin URI: http://www.wpauctions.com/download/
    55Description: Implements the ability to run auctions on your own blog. Once activated, add the widget to your sidebar or add <code>&lt;?php wp_auctions(); ?&gt;</code> to your sidebar.
    6 Version: 3.6.1
     6Version: 3.6.2
    77Author: Owen Cutajar & Hyder Jaffari
    88Author URI: http://www.wpauctions.com/download/
     
    2222            - OwenC - 15/6/2015 - Rectified a number of warnings - Traced down old bug where notifications not always sent
    2323  v3.6.1 - HyderJ - 08/03/2015 - Fixed a languages/ issue and updated some CSS. Improved general usability.
     24  v3.6.2 - OwenC - 27/2/2016 - Bug fixes (email validation)
    2425*/
    2526
     
    3031    require_once('../../../wp-config.php');
    3132 
    32 $wpa_version = "3.6.1";
     33$wpa_version = "3.6.2";
    3334
    3435// Consts
     
    338339function wpa_valid_email($address)
    339340{
    340 // check an email address is possibly valid
    341 return eregi('^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$', $address);
    342 }
     341    // check an email address is valid
     342    return filter_var($address, FILTER_VALIDATE_EMAIL);
     343}
     344
    343345
    344346if(!function_exists('file_put_contents')) {
Note: See TracChangeset for help on using the changeset viewer.