Changeset 594739
- Timestamp:
- 09/05/2012 05:09:04 AM (14 years ago)
- Location:
- password-protect-wordpress-blog/trunk
- Files:
-
- 3 edited
-
plugin.php (modified) (2 diffs)
-
pluginCallbacks.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
password-protect-wordpress-blog/trunk/plugin.php
r593924 r594739 4 4 Plugin URI: http://www.volcanicpixels.com/password-protect-wordpress-plugin/ 5 5 Description: 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 66 Version: 4.07 7 7 Author: Daniel Chatfield 8 8 Author URI: http://www.volcanicpixels.com … … 11 11 ?> 12 12 <?php 13 error_reporting(0);14 13 include( dirname( __FILE__ ) ."/lava/lava.php" ); 15 14 16 15 $pluginName = "Private Blog"; 17 $pluginVersion = "4.0 6";16 $pluginVersion = "4.07"; 18 17 19 18 $thePlugin = lava::newPlugin( __FILE__, $pluginName, $pluginVersion ); -
password-protect-wordpress-blog/trunk/pluginCallbacks.php
r593919 r594739 17 17 $this->addWPAction( $hookTag, "doHeadActions", 2 ); 18 18 19 $hookTag = "init";20 $this->addWPAction( $hookTag, "doInitActions", 2 );21 22 19 $hookTag = "displayLoginPage"; 23 20 $this->addAction( $hookTag ); … … 112 109 $this->addLogoutLink(); 113 110 } 111 112 doInitActions(); 114 113 } 115 114 -
password-protect-wordpress-blog/trunk/readme.txt
r593924 r594739 5 5 Requires at least: 3.3.1 6 6 Tested up to: 3.3.1 7 Stable tag: 4.0 67 Stable tag: 4.07 8 8 9 9 This plugin password protects your wordpress blog with a single password.
Note: See TracChangeset
for help on using the changeset viewer.