Changeset 1312557
- Timestamp:
- 12/19/2015 09:49:49 PM (10 years ago)
- Location:
- wp-customize
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
trunk/README.md (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-customize.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-customize
-
Property
svn:ignore
set to
prepros.cfg
-
Property
svn:ignore
set to
-
wp-customize/trunk/README.md
r1280893 r1312557 4 4 http://www.websightdesigns.com/ 5 5 6 @version 1.0. 76 @version 1.0.8 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. … … 56 56 ### Changelog 57 57 58 #### 1.0.8 59 * Fixes the login redirect. 60 * Use minified versions of css and js files. 61 62 #### 1.0.7 63 * Fixes custom CSS not parsing on login page template. 64 65 #### 1.0.6 66 * Fixes path issues with htaccess rules. 67 68 #### 1.0.5 69 * Fixes path issues with require_once() methods. 70 71 #### 1.0.4 72 * Just fixing repository commit issues. 73 74 #### 1.0.3 75 * Just fixing repository commit issues. 76 58 77 #### 1.0.2 59 78 * Add ability to show/hide the Register, Lost Password and Back links. … … 84 103 85 104 #### 0.7 86 * Added a slightly modified version of Spectrum color picker version 1. 7.0(forked from from https://bgrins.github.io/spectrum/)105 * Added a slightly modified version of Spectrum color picker version 1.0.8 (forked from from https://bgrins.github.io/spectrum/) 87 106 88 107 #### 0.6 -
wp-customize/trunk/readme.txt
r1280893 r1312557 5 5 Requires at least: 3.5 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 77 Stable tag: 1.0.8 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.8 = 57 * Fixes the redirect when auto redirect is unchecked. Uses minified versions of js and css files. 55 58 56 59 = 1.0.7 = -
wp-customize/trunk/wp-customize.php
r1280893 r1312557 2 2 /** 3 3 * @package WP_Customize 4 * @version 1.0. 74 * @version 1.0.8 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. 711 Version: 1.0.8 12 12 Author URI: http://websightdesigns.com/ 13 13 License: GPL2 … … 75 75 wp_enqueue_script( 'wp-customize-ace-js', plugin_dir_url(__FILE__) . 'js/ace/src-min-noconflict/ace.js', array( 'jquery' ), '1.0', true ); 76 76 wp_enqueue_script( 'wp-customize-chosen-js', plugin_dir_url(__FILE__) . 'js/chosen/chosen.jquery.min.js', array( 'jquery' ), '1.4.2', true ); 77 wp_enqueue_style( 'wp-customize-spectrum', plugin_dir_url(__FILE__) . 'js/spectrum. css', null, '1.7.0' );77 wp_enqueue_style( 'wp-customize-spectrum', plugin_dir_url(__FILE__) . 'js/spectrum.min.css', null, '1.0.8' ); 78 78 wp_enqueue_style( 'wp-customize-chosen', plugin_dir_url(__FILE__) . 'js/chosen/chosen.min.css', null, '1.4.2' ); 79 wp_enqueue_script( 'wp-customize-spectrum-js', plugin_dir_url(__FILE__) . 'js/spectrum. js', array( 'jquery' ), '1.7.0', true );80 wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script. js', array(79 wp_enqueue_script( 'wp-customize-spectrum-js', plugin_dir_url(__FILE__) . 'js/spectrum.min.js', array( 'jquery' ), '1.0.8', true ); 80 wp_enqueue_script( 'wp-customize-js', plugin_dir_url(__FILE__) . 'js/script.min.js', array( 81 81 'wp-customize-chosen-js', 82 82 'wp-customize-ace-js', … … 85 85 'media-upload', 86 86 'thickbox' 87 ), '1.0. 7', true );87 ), '1.0.8', true ); 88 88 } 89 89 add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' ); … … 115 115 */ 116 116 function wpcustomize_admin_styles() { 117 wp_enqueue_style( 'wp-customize-admin', plugin_dir_url(__FILE__) . 'css/admin. css', null, '1.7.0' );117 wp_enqueue_style( 'wp-customize-admin', plugin_dir_url(__FILE__) . 'css/admin.min.css', null, '1.0.8' ); 118 118 } 119 119 add_action('admin_head', 'wpcustomize_admin_styles'); … … 288 288 return site_url(); 289 289 } 290 } else { 291 return $redirect_to; 290 292 } 291 293 } else { … … 309 311 wp_redirect('/login/'); 310 312 exit(); 311 } elseif( ( 'wp-login.php' == $pagenow ) && $_SERVER['REQUEST_METHOD'] == 'POST' && ( !is_user_logged_in() ) ) {313 // } elseif( ( 'wp-login.php' == $pagenow ) && $_SERVER['REQUEST_METHOD'] == 'POST' && ( !is_user_logged_in() ) ) { 312 314 // wp_redirect('/login/'); 313 315 // exit();
Note: See TracChangeset
for help on using the changeset viewer.