Changeset 519866
- Timestamp:
- 03/16/2012 03:00:55 PM (14 years ago)
- Location:
- wp-user-control/trunk
- Files:
-
- 2 added
- 2 edited
-
languages/wp-user-control-fi.mo (added)
-
languages/wp-user-control-fi.po (added)
-
readme.txt (modified) (4 diffs)
-
wp_uc_widget.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-user-control/trunk/readme.txt
r517093 r519866 5 5 Requires at least: 2.9 6 6 Tested up to: 3.3.1 7 Stable tag: 1. 2.17 Stable tag: 1.3 8 8 9 9 Add a WordPress login widget that allows a user to login, register, or reset their password, ALL without leaving their current location! … … 12 12 13 13 WP User Control adds a WordPress login widget (sidebar) that allows a user to login, register, retrieve lost passwords, etc. without leaving a specific location within your site. 14 14 15 <strong>Key Features:</strong> 15 16 <ul> … … 68 69 == Changelog == 69 70 71 = 1.3 = 72 * Fixed bug with jQuery not loading properly for external facing pages on some systems (required for dynamic tabs). 73 * Added Finnish language translation files. 74 70 75 = 1.2.1 = 71 76 * Fixed bug preventing options screen from displaying resulting from incorrect internal function call. … … 93 98 == Upgrade Notice == 94 99 95 = 1.1.2 = 100 = 1.3 = 101 * Minor bug fixes, added Finnish language translation file. 102 103 = 1.2.1 = 96 104 * IMPORTANT: Fixed bug preventing options screen from displaying resulting from incorrect internal function call. 97 105 -
wp-user-control/trunk/wp_uc_widget.php
r517093 r519866 5 5 Plugin Name: WP User Control 6 6 Plugin URI: http://oaktondata.com/wp-user-control/ 7 Version: 1. 2.17 Version: 1.3 8 8 Author: Bill Edgar 9 9 Author URI: http://oaktondata.com … … 43 43 44 44 // define constants 45 define( 'WP_USER_CONTROL_WIDGET_VERSION', '1. 2.1' );45 define( 'WP_USER_CONTROL_WIDGET_VERSION', '1.3' ); 46 46 define( 'WP_USER_CONTROL_WIDGET_BASE_URL', network_site_url() ); 47 47 … … 69 69 } catch ( Exception $e ) { 70 70 echo "<p>" . $e->getMessage() . "</p>"; 71 exit(); 71 72 } 72 73 } … … 212 213 $handle = 'wp-user-control-widget', 213 214 $src = WP_USER_CONTROL_WIDGET_JS . 'wp-user-control-widget.js', 214 $deps = 'jquery' 215 $deps = array( 'jquery' ), 216 $ver = WP_USER_CONTROL_WIDGET_VERSION, 217 $in_footer = false 215 218 ); 216 219 // print script
Note: See TracChangeset
for help on using the changeset viewer.