Plugin Directory

Changeset 1312557


Ignore:
Timestamp:
12/19/2015 09:49:49 PM (10 years ago)
Author:
websightdesigns
Message:

version 1.0.8

Location:
wp-customize
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-customize

    • Property svn:ignore set to
      prepros.cfg
  • wp-customize/trunk/README.md

    r1280893 r1312557  
    44http://www.websightdesigns.com/
    55
    6 @version 1.0.7
     6@version 1.0.8
    77
    88This plugin allows you to set up a custom login page and set a custom footer message in the WordPress Admin.
     
    5656### Changelog
    5757
     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
    5877#### 1.0.2
    5978* Add ability to show/hide the Register, Lost Password and Back links.
     
    84103
    85104#### 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/)
    87106
    88107#### 0.6
  • wp-customize/trunk/readme.txt

    r1280893 r1312557  
    55Requires at least: 3.5
    66Tested up to: 4.3.1
    7 Stable tag: 1.0.7
     7Stable tag: 1.0.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 1.0.8 =
     57* Fixes the redirect when auto redirect is unchecked. Uses minified versions of js and css files.
    5558
    5659= 1.0.7 =
  • wp-customize/trunk/wp-customize.php

    r1280893 r1312557  
    22/**
    33 * @package WP_Customize
    4  * @version 1.0.7
     4 * @version 1.0.8
    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.7
     11Version: 1.0.8
    1212Author URI: http://websightdesigns.com/
    1313License: GPL2
     
    7575    wp_enqueue_script( 'wp-customize-ace-js', plugin_dir_url(__FILE__) . 'js/ace/src-min-noconflict/ace.js', array( 'jquery' ), '1.0', true );
    7676    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' );
    7878    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(
    8181        'wp-customize-chosen-js',
    8282        'wp-customize-ace-js',
     
    8585        'media-upload',
    8686        'thickbox'
    87     ), '1.0.7', true );
     87    ), '1.0.8', true );
    8888}
    8989add_action( 'admin_enqueue_scripts', 'wpcustomize_admin_scripts' );
     
    115115 */
    116116function 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' );
    118118}
    119119add_action('admin_head', 'wpcustomize_admin_styles');
     
    288288                return site_url();
    289289            }
     290        } else {
     291            return $redirect_to;
    290292        }
    291293    } else {
     
    309311        wp_redirect('/login/');
    310312        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() ) ) {
    312314        // wp_redirect('/login/');
    313315        // exit();
Note: See TracChangeset for help on using the changeset viewer.