Plugin Directory

Changeset 2166404


Ignore:
Timestamp:
10/01/2019 01:44:19 PM (6 years ago)
Author:
afsalrahim
Message:

tagging v2.3.3

Location:
my-wp-login-logo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • my-wp-login-logo/trunk/dc-custom-login-logo.php

    r2166381 r2166404  
    44Plugin URI: https://digitcodes.com
    55Description: My Wordpress Login Logo lets you to add a custom logo in your wordpress login page instead of the usual wordpress logo.
    6 Version: 2.3.2
     6Version: 2.3.3
    77Author: Afsal Rahim
    88Author URI: https://afsal.me
  • my-wp-login-logo/trunk/readme.txt

    r2166381 r2166404  
    44Requires at least: 3.0.1
    55Tested up to: 5.2.3
    6 Stable tag: 2.3.2
     6Stable tag: 2.3.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4444== Changelog ==
    4545
     46= 2.3.3 =
     47* Fix prefill of old selected logo in input field.
     48
    4649= 2.3.2 =
    4750* Improved settings page with media uploader.
  • my-wp-login-logo/trunk/views/dashboard.php

    r2166388 r2166404  
    7171<hr>
    7272
     73<?php
     74    if($updated) {
     75        echo "<div class=\"updated\"><p><strong>Login Page Updated.</strong></p></div>";
     76    }
     77    if($invalid_number) {
     78        echo "<div class=\"error\"><p><strong> Error: Provide a valid height and width </strong></p></div>";
     79    }   
     80?> 
    7381
    7482<table cellpadding="2" cellspacing="1" width="100%" class="fixed" border="0">
    7583<tbody><tr>
    7684    <td valign="top">
    77         <?php
    78             if($updated) {
    79                 echo "<div class=\"updated\"><p><strong>Login Page Updated.</strong></p></div>";
    80             }
    81             if($invalid_number) {
    82                 echo "<div class=\"error\"><p><strong> Error: Provide a valid height and width </strong></p></div>";
    83             }   
    84         ?> 
     85
    8586        <div class="postbox">
    8687            <button class="handlediv button-link" aria-expanded="true" type="button">
     
    114115                    <tr>
    115116                        <th scope="row"><label for="logoimage">Logo Image</label></th>
    116                         <td><input class="regular-text" type="text" id="wp_custom_login_logo_url" name="wp_custom_login_logo_url" size="70"> <input type="button" name="upload-btn" id="upload-btn" class="button-secondary" value="Upload Image"></td>
     117                        <td><input class="regular-text" type="text" id="wp_custom_login_logo_url" name="wp_custom_login_logo_url" value="<?php echo $custom_logo_url; ?>" size="70"> <input type="button" name="upload-btn" id="upload-btn" class="button-secondary" value="Upload Image"></td>
    117118                            <script type="text/javascript">
    118119                            jQuery(document).ready(function($){
Note: See TracChangeset for help on using the changeset viewer.