Changeset 1359639
- Timestamp:
- 02/27/2016 02:30:12 PM (10 years ago)
- Location:
- wp-auctions/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp_auctions.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-auctions/trunk/readme.txt
r1214922 r1359639 4 4 Tags: auctions,auction,wp auction,auction plugin,wordpress auction,wp auctions,auction script,ebay,ebay auction,bidding 5 5 Requires at least: 3.8 6 Tested up to: 4. 2.36 Tested up to: 4.4.2 7 7 Stable tag: /trunk/ 8 8 … … 117 117 118 118 = 3.6.1 = 119 * Bug fixes 120 121 = 3.6.1 = 119 122 * Fixed languages/ textdomain issue 120 123 * Improved some CSS -
wp-auctions/trunk/wp_auctions.php
r1214922 r1359639 4 4 Plugin URI: http://www.wpauctions.com/download/ 5 5 Description: Implements the ability to run auctions on your own blog. Once activated, add the widget to your sidebar or add <code><?php wp_auctions(); ?></code> to your sidebar. 6 Version: 3.6. 16 Version: 3.6.2 7 7 Author: Owen Cutajar & Hyder Jaffari 8 8 Author URI: http://www.wpauctions.com/download/ … … 22 22 - OwenC - 15/6/2015 - Rectified a number of warnings - Traced down old bug where notifications not always sent 23 23 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) 24 25 */ 25 26 … … 30 31 require_once('../../../wp-config.php'); 31 32 32 $wpa_version = "3.6. 1";33 $wpa_version = "3.6.2"; 33 34 34 35 // Consts … … 338 339 function wpa_valid_email($address) 339 340 { 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 343 345 344 346 if(!function_exists('file_put_contents')) {
Note: See TracChangeset
for help on using the changeset viewer.