Changeset 1280448
- Timestamp:
- 11/05/2015 03:14:28 PM (10 years ago)
- Location:
- wp-customize/trunk
- Files:
-
- 3 edited
-
README.md (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-customize.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-customize/trunk/README.md
r1280438 r1280448 4 4 http://www.websightdesigns.com/ 5 5 6 @version 1.0. 46 @version 1.0.5 7 7 8 8 This 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 5 5 Requires at least: 3.5 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 54 54 == Changelog == 55 56 = 1.0.5 = 57 * Fixing path issues with require_once() methods. 55 58 56 59 = 1.0.4 = -
wp-customize/trunk/wp-customize.php
r1280438 r1280448 2 2 /** 3 3 * @package WP_Customize 4 * @version 1.0. 44 * @version 1.0.5 5 5 */ 6 6 … … 9 9 Description: This plugin allows you to customize the WordPress login page and set your own footer for the WordPress Admin. 10 10 Author: WebSight Designs 11 Version: 1.0. 411 Version: 1.0.5 12 12 Author URI: http://websightdesigns.com/ 13 13 License: GPL2 … … 45 45 */ 46 46 47 require_once( 'plugin-init.php');47 require_once( plugin_dir_path( __FILE__ ) . 'plugin-init.php' ); 48 48 49 49 /** … … 53 53 */ 54 54 55 require_once( 'page-template.php');55 require_once( plugin_dir_path( __FILE__ ) . 'page-template.php' ); 56 56 57 57 /** … … 79 79 'media-upload', 80 80 'thickbox' 81 ), '1.0. 4', true );81 ), '1.0.5', true ); 82 82 } 83 83 add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' ); … … 97 97 */ 98 98 99 require_once( 'settings-page.php');99 require_once( plugin_dir_path( __FILE__ ) . 'settings-page.php' ); 100 100 101 101 /**
Note: See TracChangeset
for help on using the changeset viewer.