Plugin Directory

Changeset 519866


Ignore:
Timestamp:
03/16/2012 03:00:55 PM (14 years ago)
Author:
wmsedgar
Message:

Committing version 1.3.

Location:
wp-user-control/trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-user-control/trunk/readme.txt

    r517093 r519866  
    55Requires at least: 2.9
    66Tested up to: 3.3.1
    7 Stable tag: 1.2.1
     7Stable tag: 1.3
    88
    99Add a WordPress login widget that allows a user to login, register, or reset their password, ALL without leaving their current location!
     
    1212
    1313WP 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
    1415<strong>Key Features:</strong>
    1516<ul>
     
    6869== Changelog ==
    6970
     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
    7075= 1.2.1 =
    7176* Fixed bug preventing options screen from displaying resulting from incorrect internal function call.
     
    9398== Upgrade Notice ==
    9499
    95 = 1.1.2 =
     100= 1.3 =
     101* Minor bug fixes, added Finnish language translation file.
     102
     103= 1.2.1 =
    96104* IMPORTANT: Fixed bug preventing options screen from displaying resulting from incorrect internal function call.
    97105
  • wp-user-control/trunk/wp_uc_widget.php

    r517093 r519866  
    55    Plugin Name: WP User Control
    66    Plugin URI: http://oaktondata.com/wp-user-control/
    7     Version: 1.2.1
     7    Version: 1.3
    88    Author: Bill Edgar
    99    Author URI: http://oaktondata.com
     
    4343
    4444// define constants
    45 define( 'WP_USER_CONTROL_WIDGET_VERSION', '1.2.1' );
     45define( 'WP_USER_CONTROL_WIDGET_VERSION', '1.3' );
    4646define( 'WP_USER_CONTROL_WIDGET_BASE_URL', network_site_url() );
    4747
     
    6969    } catch ( Exception $e ) {
    7070        echo "<p>" . $e->getMessage() . "</p>";
     71        exit();
    7172    }
    7273}
     
    212213                $handle = 'wp-user-control-widget',
    213214                $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
    215218                );
    216219            // print script
Note: See TracChangeset for help on using the changeset viewer.