Plugin Directory

Changeset 349979


Ignore:
Timestamp:
02/23/2011 08:24:57 PM (15 years ago)
Author:
fpoller
Message:

Adding 0.4

Location:
private-wp-suite
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • private-wp-suite/tags/0.4/private-wp-suite.php

    r282209 r349979  
    1212      provided with the distribution.
    1313
    14     THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND ANY EXPRESS OR IMPLIED
     14    THIS SOFTWARE IS PROVIDED BY FREDRIK POLLER ``AS IS'' AND ANY EXPRESS OR IMPLIED
    1515    WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
    1616    FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
     
    3131    Plugin URI: http://poller.se/code/wordpress-plugins/
    3232    Description: Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private.
    33     Version: 0.3
     33    Version: 0.4
    3434    Author: Fredrik Poller
    3535    Author URI: http://poller.se/
     
    205205                $plrpws_file_size = filesize(ABSPATH . $plrpws_requested_file);
    206206                $plrpws_mime_type = wp_check_filetype(ABSPATH . $plrpws_requested_file);
     207                header('HTTP/1.1 200 OK', true, 200);
    207208                header('Content-Length: ' . $plrpws_file_size);
    208209                header('Content-type: ' . $plrpws_mime_type['type']);
  • private-wp-suite/tags/0.4/readme.txt

    r282209 r349979  
    33Tags: private, protect, feed, uploads, content
    44Requires at least: 2.9
    5 Tested up to: 3.0.1
    6 Stable tag: 0.3
     5Tested up to: 3.1
     6Stable tag: 0.4
    77
    88Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private.
     
    2929== Changelog ==
    3030
     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
    3135= 0.3 =
    3236* Removed debug functions
  • private-wp-suite/trunk/private-wp-suite.php

    r282209 r349979  
    1212      provided with the distribution.
    1313
    14     THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND ANY EXPRESS OR IMPLIED
     14    THIS SOFTWARE IS PROVIDED BY FREDRIK POLLER ``AS IS'' AND ANY EXPRESS OR IMPLIED
    1515    WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
    1616    FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
     
    3131    Plugin URI: http://poller.se/code/wordpress-plugins/
    3232    Description: Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private.
    33     Version: 0.3
     33    Version: 0.4
    3434    Author: Fredrik Poller
    3535    Author URI: http://poller.se/
     
    205205                $plrpws_file_size = filesize(ABSPATH . $plrpws_requested_file);
    206206                $plrpws_mime_type = wp_check_filetype(ABSPATH . $plrpws_requested_file);
     207                header('HTTP/1.1 200 OK', true, 200);
    207208                header('Content-Length: ' . $plrpws_file_size);
    208209                header('Content-type: ' . $plrpws_mime_type['type']);
  • private-wp-suite/trunk/readme.txt

    r282209 r349979  
    33Tags: private, protect, feed, uploads, content
    44Requires at least: 2.9
    5 Tested up to: 3.0.1
    6 Stable tag: 0.3
     5Tested up to: 3.1
     6Stable tag: 0.4
    77
    88Adds option in the admin panel for making your blog (including rss feeds and uploaded files) private.
     
    2929== Changelog ==
    3030
     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
    3135= 0.3 =
    3236* Removed debug functions
Note: See TracChangeset for help on using the changeset viewer.