Plugin Directory

Changeset 531384


Ignore:
Timestamp:
04/15/2012 01:32:44 PM (14 years ago)
Author:
jcnetsys
Message:

Fixed install_id issue

Location:
password-protect-wordpress
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • password-protect-wordpress/readme.txt

    r531341 r531384  
    55Requires at least: 3.3.1
    66Tested up to: 3.3.1
    7 Stable tag: 4.0
     7Stable tag: 4.01
    88
    99This plugin password protects your wordpress blog with a single password.
  • password-protect-wordpress/trunk/plugin.php

    r527797 r531384  
    44Plugin URI: http://www.volcanicpixels.com/password-protect-wordpress-plugin/
    55Description: Private Blog is a wordpress plugin which allows you to password protect all of your wordpress blog including all posts and feeds with a single password.
    6 Version: 4.0
     6Version: 4.01
    77Author: Daniel Chatfield
    88Author URI: http://www.volcanicpixels.com
     
    1515
    1616$pluginName = "Private Blog";
    17 $pluginVersion = "4.0";
     17$pluginVersion = "4.01";
    1818
    1919$thePlugin = lava::newPlugin( __FILE__, $pluginName, $pluginVersion );
  • password-protect-wordpress/trunk/readme.txt

    r531336 r531384  
    55Requires at least: 3.3.1
    66Tested up to: 3.3.1
    7 Stable tag: 4.0
     7Stable tag: 4.01
    88
    99This plugin password protects your wordpress blog with a single password.
  • password-protect-wordpress/trunk/vendor.php

    r531336 r531384  
    157157
    158158    function getInstallId() {
    159         return md5( AUTH_SALT . get_home_url() );
     159        return md5( AUTH_SALT . get_home_url() . $this->_slug() );
    160160    }
    161161
Note: See TracChangeset for help on using the changeset viewer.