Uber Login Logo - Version 0.3

Version Description

Download this release

Release Info

Developer uberweb
Plugin Icon wp plugin Uber Login Logo
Version 0.3
Comparing to
See all releases

Code changes from version 0.2 to 0.3

Files changed (2) hide show
  1. readme.txt +6 -2
  2. uber-login-logo.php +7 -8
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: uberweb
3
  Tags: login, logo, login logo, admin, customisation, customization, custom login, media uploader, AJAX, wp-login
4
  Requires at least: 3.0
5
  Tested up to: 3.3.1
6
- Stable tag: 0.2
7
 
8
  A simple, lightweight WordPress plugin to change your login logo.
9
 
@@ -39,5 +39,9 @@ I'd like to keep this plugin simple, but if you think you have a good idea leave
39
 
40
  = Version 0.2 =
41
 
42
- * Compatible up to 3.3.1 (and probably beyond)
 
 
 
 
43
 
3
  Tags: login, logo, login logo, admin, customisation, customization, custom login, media uploader, AJAX, wp-login
4
  Requires at least: 3.0
5
  Tested up to: 3.3.1
6
+ Stable tag: 0.3
7
 
8
  A simple, lightweight WordPress plugin to change your login logo.
9
 
39
 
40
  = Version 0.2 =
41
 
42
+ * Compatible up to 3.3.1 (and probably beyond).
43
+
44
+ = Version 0.3 =
45
+
46
+ * Updated the link to the home URL for Jamie.
47
 
uber-login-logo.php CHANGED
@@ -6,7 +6,7 @@
6
  * @link http://www.uberweb.com.au/uber-login-logo-wordpress-plugin/
7
  *
8
  * @author Alex Rogers
9
- * @version 0.2
10
  * @package Uber_Login_Logo
11
  */
12
 
@@ -14,7 +14,7 @@
14
  Plugin Name: Uber Login Logo
15
  Plugin URI: http://www.uberweb.com.au/uber-login-logo-wordpress-plugin/
16
  Description: Change login logo.
17
- Version: 0.2
18
  Author: UberWeb
19
  Author URI: http://www.uberweb.com.au/
20
  License: GPLv2 or later
@@ -45,9 +45,8 @@ if(defined('ABSPATH') && defined('WPINC')) {
45
  * Main class for Uber Login Logo, does it all.
46
  *
47
  * @package Uber_Login_Logo
48
- * @todo Unistall plugin hook
49
  * @todo I18n Support
50
- * @todo Remove login logo support
51
  */
52
 
53
  class UberLoginLogo
@@ -55,7 +54,7 @@ class UberLoginLogo
55
  /**
56
  * @const VERSION The current plugin version
57
  */
58
- const VERSION = '0.2';
59
 
60
  /**
61
  * @const UBERURL Link to uberweb site
@@ -234,13 +233,13 @@ class UberLoginLogo
234
  }
235
 
236
  /**
237
- * Retrieve the Site URL
238
  *
239
- * @return string Site URL
240
  */
241
  public static function replaceLoginUrl()
242
  {
243
- return site_url();
244
  }
245
 
246
  /**
6
  * @link http://www.uberweb.com.au/uber-login-logo-wordpress-plugin/
7
  *
8
  * @author Alex Rogers
9
+ * @version 0.3
10
  * @package Uber_Login_Logo
11
  */
12
 
14
  Plugin Name: Uber Login Logo
15
  Plugin URI: http://www.uberweb.com.au/uber-login-logo-wordpress-plugin/
16
  Description: Change login logo.
17
+ Version: 0.3
18
  Author: UberWeb
19
  Author URI: http://www.uberweb.com.au/
20
  License: GPLv2 or later
45
  * Main class for Uber Login Logo, does it all.
46
  *
47
  * @package Uber_Login_Logo
48
+ * @todo Uninstall plugin hook
49
  * @todo I18n Support
 
50
  */
51
 
52
  class UberLoginLogo
54
  /**
55
  * @const VERSION The current plugin version
56
  */
57
+ const VERSION = '0.3';
58
 
59
  /**
60
  * @const UBERURL Link to uberweb site
233
  }
234
 
235
  /**
236
+ * Retrieve the Home URL
237
  *
238
+ * @return string Home URL
239
  */
240
  public static function replaceLoginUrl()
241
  {
242
+ return home_url();
243
  }
244
 
245
  /**