Plugin Directory

Changeset 712767


Ignore:
Timestamp:
05/14/2013 07:05:19 AM (13 years ago)
Author:
Potsky
Message:

Version 0.4.8 in trunk

Location:
s2member-secure-file-browser/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • s2member-secure-file-browser/trunk/readme.txt

    r708663 r712767  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 0.4.7
     7Stable tag: 0.4.8
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    193193== Changelog ==
    194194
     195= 0.4.8 =
     196* New feature : preview for pictures
     197* New feature : configuration paths in config.php
     198* Bug fix     : navigator in all statistics panel fix
     199
    195200= 0.4.7 =
    196201* New feature : change files display name in admin
  • s2member-secure-file-browser/trunk/s2member-secure-file-browser.php

    r708663 r712767  
    66                You can display the file browser via the shortcode [s2member_secure_files_browser /].
    77                You can manage files and get statistics in the Dashboard > s2Member > Secure File Browser
    8 Version: 0.4.7
    9 Date: 2013-04-28
     8Version: 0.4.8
     9Date: 2013-05-11
    1010Author: Potsky
    1111Author URI: http://www.potsky.com/about/
     
    5050        add_action( "all_admin_notices" , create_function( '' , 'echo \'<div class="error fade"><p>You need WordPress® v\' . PSK_S2MSFB_MIN_WP_VERSION . \'+ to use \' . PSK_S2MSFB_NAME . \'.</p></div>\';' ) );
    5151    } else {
     52        /*
     53         * Trick to unload my plugin when debugging remotely on wordpress installations
     54         * - Just set a GET parameter to psk_s2msfb_unload to 1 to unload
     55         * - fix the bug in the dashboard
     56         * - Reactivate by setting GET parameter psk_s2msfb_unload to 0
     57         */
    5258        if ( isset( $_GET[ 'psk_s2msfb_unload' ] ) ) {
    5359            if ( $_GET[ 'psk_s2msfb_unload' ] == '0' ) {
Note: See TracChangeset for help on using the changeset viewer.