Plugin Directory

Changeset 1280448


Ignore:
Timestamp:
11/05/2015 03:14:28 PM (10 years ago)
Author:
websightdesigns
Message:

version 1.0.5

Location:
wp-customize/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-customize/trunk/README.md

    r1280438 r1280448  
    44http://www.websightdesigns.com/
    55
    6 @version 1.0.4
     6@version 1.0.5
    77
    88This plugin allows you to set up a custom login page and set a custom footer message in the WordPress Admin.
  • wp-customize/trunk/readme.txt

    r1280438 r1280448  
    55Requires at least: 3.5
    66Tested up to: 4.3.1
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 1.0.5 =
     57* Fixing path issues with require_once() methods.
    5558
    5659= 1.0.4 =
  • wp-customize/trunk/wp-customize.php

    r1280438 r1280448  
    22/**
    33 * @package WP_Customize
    4  * @version 1.0.4
     4 * @version 1.0.5
    55 */
    66
     
    99Description: This plugin allows you to customize the WordPress login page and set your own footer for the WordPress Admin.
    1010Author: WebSight Designs
    11 Version: 1.0.4
     11Version: 1.0.5
    1212Author URI: http://websightdesigns.com/
    1313License: GPL2
     
    4545 */
    4646
    47 require_once('plugin-init.php');
     47require_once( plugin_dir_path( __FILE__ ) . 'plugin-init.php' );
    4848
    4949/**
     
    5353 */
    5454
    55 require_once('page-template.php');
     55require_once( plugin_dir_path( __FILE__ ) . 'page-template.php' );
    5656
    5757/**
     
    7979        'media-upload',
    8080        'thickbox'
    81     ), '1.0.4', true );
     81    ), '1.0.5', true );
    8282}
    8383add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' );
     
    9797 */
    9898
    99 require_once('settings-page.php');
     99require_once( plugin_dir_path( __FILE__ ) . 'settings-page.php' );
    100100
    101101/**
Note: See TracChangeset for help on using the changeset viewer.