Changeset 531662
- Timestamp:
- 04/16/2012 08:38:16 AM (14 years ago)
- Location:
- password-protect-wordpress
- Files:
-
- 2 added
- 1 deleted
- 5 edited
-
readme.txt (modified) (2 diffs)
-
trunk/lava/_cache (added)
-
trunk/lava/_cache/index.php (added)
-
trunk/lava/_classes/lavaSkins.php (modified) (1 diff)
-
trunk/lava/robots.txt (deleted)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/pluginCallbacks.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
password-protect-wordpress/readme.txt
r531384 r531662 5 5 Requires at least: 3.3.1 6 6 Tested up to: 3.3.1 7 Stable tag: 4.0 17 Stable tag: 4.02 8 8 9 9 This plugin password protects your wordpress blog with a single password. … … 126 126 127 127 * Complete rewrite 128 129 = 4.02 = 130 131 * Fixed issue with template loader 132 * Fixed issue with header buffer being flushed by All In One SEO pack when theme uses weird get_header call (I mean WTF was that theme designer doing) 133 * Turned error reporting off -
password-protect-wordpress/trunk/lava/_classes/lavaSkins.php
r527785 r531662 187 187 188 188 $filePath = dirname( $this->_file() ) . '/skins/' . $currentSkin . '/templates/' . $templateName . '.html'; 189 190 $h2o = new h2o( $filePath ); 189 $options = array( 190 "cache_dir" => dirname( $this->_file() ) . '/lava/_cache/' 191 ); 192 193 $h2o = new h2o( $filePath, $options ); 191 194 192 195 $templateVars = apply_filters( $this->_slug( "_templateVars" ) , array() ); -
password-protect-wordpress/trunk/plugin.php
r531384 r531662 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 16 Version: 4.02 7 7 Author: Daniel Chatfield 8 8 Author URI: http://www.volcanicpixels.com … … 11 11 ?> 12 12 <?php 13 //error_reporting(E_ALL);//used for debug only (NOT PRODUCTION) 13 error_reporting(0); 14 14 include( dirname( __FILE__ ) ."/lava/lava.php" ); 15 15 16 16 $pluginName = "Private Blog"; 17 $pluginVersion = "4.0 1";17 $pluginVersion = "4.02"; 18 18 19 19 $thePlugin = lava::newPlugin( __FILE__, $pluginName, $pluginVersion ); -
password-protect-wordpress/trunk/pluginCallbacks.php
r527785 r531662 288 288 $expire = time() + $expire; 289 289 } 290 setcookie( $this->_slug( "loggedin" ), $loginNonce, $expire, COOKIEPATH, COOKIE_DOMAIN ); 290 if( !headers_sent() ) { 291 setcookie( $this->_slug( "loggedin" ), $loginNonce, $expire, COOKIEPATH, COOKIE_DOMAIN ); 292 } 291 293 } 292 294 -
password-protect-wordpress/trunk/readme.txt
r531384 r531662 5 5 Requires at least: 3.3.1 6 6 Tested up to: 3.3.1 7 Stable tag: 4.0 17 Stable tag: 4.02 8 8 9 9 This plugin password protects your wordpress blog with a single password. … … 126 126 127 127 * Complete rewrite 128 129 = 4.02 = 130 131 * Fixed issue with template loader 132 * Fixed issue with header buffer being flushed by All In One SEO pack when theme uses weird get_header call (I mean WTF was that theme designer doing) 133 * Turned error reporting off
Note: See TracChangeset
for help on using the changeset viewer.