Changeset 349979
- Timestamp:
- 02/23/2011 08:24:57 PM (15 years ago)
- Location:
- private-wp-suite
- Files:
-
- 4 edited
- 1 copied
-
tags/0.4 (copied) (copied from private-wp-suite/trunk)
-
tags/0.4/private-wp-suite.php (modified) (3 diffs)
-
tags/0.4/readme.txt (modified) (2 diffs)
-
trunk/private-wp-suite.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
private-wp-suite/tags/0.4/private-wp-suite.php
r282209 r349979 12 12 provided with the distribution. 13 13 14 THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER>``AS IS'' AND ANY EXPRESS OR IMPLIED14 THIS SOFTWARE IS PROVIDED BY FREDRIK POLLER ``AS IS'' AND ANY EXPRESS OR IMPLIED 15 15 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 16 16 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR … … 31 31 Plugin URI: http://poller.se/code/wordpress-plugins/ 32 32 Description: Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private. 33 Version: 0. 333 Version: 0.4 34 34 Author: Fredrik Poller 35 35 Author URI: http://poller.se/ … … 205 205 $plrpws_file_size = filesize(ABSPATH . $plrpws_requested_file); 206 206 $plrpws_mime_type = wp_check_filetype(ABSPATH . $plrpws_requested_file); 207 header('HTTP/1.1 200 OK', true, 200); 207 208 header('Content-Length: ' . $plrpws_file_size); 208 209 header('Content-type: ' . $plrpws_mime_type['type']); -
private-wp-suite/tags/0.4/readme.txt
r282209 r349979 3 3 Tags: private, protect, feed, uploads, content 4 4 Requires at least: 2.9 5 Tested up to: 3. 0.16 Stable tag: 0. 35 Tested up to: 3.1 6 Stable tag: 0.4 7 7 8 8 Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private. … … 29 29 == Changelog == 30 30 31 = 0.4 = 32 * Tested with 3.1 33 * Fixed embarrassing 404 header (http://wordpress.org/support/topic/plugin-private-wp-suite-pdf-files-dont-work-solution-included) 34 31 35 = 0.3 = 32 36 * Removed debug functions -
private-wp-suite/trunk/private-wp-suite.php
r282209 r349979 12 12 provided with the distribution. 13 13 14 THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER>``AS IS'' AND ANY EXPRESS OR IMPLIED14 THIS SOFTWARE IS PROVIDED BY FREDRIK POLLER ``AS IS'' AND ANY EXPRESS OR IMPLIED 15 15 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 16 16 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR … … 31 31 Plugin URI: http://poller.se/code/wordpress-plugins/ 32 32 Description: Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private. 33 Version: 0. 333 Version: 0.4 34 34 Author: Fredrik Poller 35 35 Author URI: http://poller.se/ … … 205 205 $plrpws_file_size = filesize(ABSPATH . $plrpws_requested_file); 206 206 $plrpws_mime_type = wp_check_filetype(ABSPATH . $plrpws_requested_file); 207 header('HTTP/1.1 200 OK', true, 200); 207 208 header('Content-Length: ' . $plrpws_file_size); 208 209 header('Content-type: ' . $plrpws_mime_type['type']); -
private-wp-suite/trunk/readme.txt
r282209 r349979 3 3 Tags: private, protect, feed, uploads, content 4 4 Requires at least: 2.9 5 Tested up to: 3. 0.16 Stable tag: 0. 35 Tested up to: 3.1 6 Stable tag: 0.4 7 7 8 8 Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private. … … 29 29 == Changelog == 30 30 31 = 0.4 = 32 * Tested with 3.1 33 * Fixed embarrassing 404 header (http://wordpress.org/support/topic/plugin-private-wp-suite-pdf-files-dont-work-solution-included) 34 31 35 = 0.3 = 32 36 * Removed debug functions
Note: See TracChangeset
for help on using the changeset viewer.