Plugin Directory

Changeset 1226562


Ignore:
Timestamp:
08/20/2015 09:06:22 PM (11 years ago)
Author:
mignonstyle
Message:

ver.0.9 Bug fix of logo image.

Location:
ms-custom-login/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ms-custom-login/trunk/ms-custom-login.php

    r1166648 r1226562  
    66 * Text Domain: ms-custom-login
    77 * Domain Path: /languages
    8  * Version: 0.8
     8 * Version: 0.9
    99 * Author: Mignon Style
    1010 * Author URI: http://mignonstyle.com
     
    12401240    } else {
    12411241        if ( ! empty( $options['mcl_logo_url'] ) ) {
    1242             list( $width, $height ) = getimagesize( $options['mcl_logo_url'] );
     1242            $abs_path = rtrim( ABSPATH, '/' );
     1243            $path = str_replace( site_url(), $abs_path, $options['mcl_logo_url'] );
     1244            list( $width, $height ) = getimagesize( $path );
    12431245
    12441246            if ( $width >= 320 ) {
     
    12641266            $height = 84;
    12651267        }
    1266 
    12671268        if ( ! empty( $options['mcl_show_logo_text'] ) ) {
    12681269            $text_x = 'left';
  • ms-custom-login/trunk/readme.txt

    r1166648 r1226562  
    55Tags: login, admin, custom, customise, customize, customisation, customization, logo, custom login, custom logo
    66Requires at least: 3.9
    7 Tested up to: 4.2.2
     7Tested up to: 4.3
    88Stable tag: trunk
    99License: GPLv2 or later
     
    5555== Changelog ==
    5656
     57= 0.9 =
     58* Bug fix of logo image.
     59
    5760= 0.8 =
    5861* Add the selection of the "position of the form".
Note: See TracChangeset for help on using the changeset viewer.