Plugin Directory

Changeset 957494


Ignore:
Timestamp:
07/30/2014 04:28:44 PM (12 years ago)
Author:
briancolinger
Message:

Removing a stray () in is_localhost().
Bumping version to 1.6.3

Location:
vaultpress/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vaultpress/trunk/readme.txt

    r956890 r957494  
    44Requires at least: 2.9.2
    55Tested up to: 3.9.1
    6 Stable tag: 1.6.2
     6Stable tag: 1.6.3
    77License: GPLv2
    88
  • vaultpress/trunk/vaultpress.php

    r952302 r957494  
    44 * Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
    55 * Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">Need some help?</a>
    6  * Version: 1.6.2
     6 * Version: 1.6.3
    77 * Author: Automattic
    88 * Author URI: http://vaultpress.com/?utm_source=author-uri&amp;utm_medium=plugin-description&amp;utm_campaign=1.0
     
    1919    var $option_name    = 'vaultpress';
    2020    var $db_version     = 3;
    21     var $plugin_version = '1.6.2';
     21    var $plugin_version = '1.6.3';
    2222
    2323    function __construct() {
     
    16731673        if ( empty( $site_url ) )
    16741674            return false;
    1675         $parts = parse_url( $site_url() );
     1675        $parts = parse_url( $site_url );
    16761676        if ( !empty( $parts['host'] ) && in_array( $parts['host'], array( 'localhost', '127.0.0.1' ) ) )
    16771677            return true;
Note: See TracChangeset for help on using the changeset viewer.