Plugin Directory

Changeset 728335


Ignore:
Timestamp:
06/19/2013 11:32:31 AM (13 years ago)
Author:
Potsky
Message:

Version 0.4.10

Location:
s2member-secure-file-browser
Files:
152 added
4 edited

Legend:

Unmodified
Added
Removed
  • s2member-secure-file-browser/trunk/class/psk_s2msfb.class.php

    r727082 r728335  
    16131613            ) ENGINE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;";
    16141614
    1615             require( ABSPATH . 'wp-admin/includes/upgrade.php' );
     1615            if (! function_exists('dbDelta')) {
     1616                require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
     1617            }
    16161618            dbDelta( $sql );
    16171619
     
    16921694            ) ENGINE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;";
    16931695
    1694             require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
     1696            if (! function_exists('dbDelta')) {
     1697                require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
     1698            }
    16951699            dbDelta( $sql );
    16961700
  • s2member-secure-file-browser/trunk/inc/define.php

    r727082 r728335  
    11<?php
    2 define( 'PSK_S2MSFB_VERSION' , '0.4.9' );
     2define( 'PSK_S2MSFB_VERSION' , '0.4.10' );
    33define( 'PSK_S2MSFB_MIN_PHP_VERSION' , '5.2' );
    44define( 'PSK_S2MSFB_MIN_WP_VERSION' , '3.3' );
  • s2member-secure-file-browser/trunk/readme.txt

    r727082 r728335  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 0.4.9
     7Stable tag: 0.4.10
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    193193== Changelog ==
    194194
     195= 0.4.10 =
     196* Enhancement : plugin now checks by itself the wordpress upgrade include (problem with some customers)
     197
    195198= 0.4.9 =
    196199* Bug fix     : remove debug messages in the music player
     
    199202= 0.4.8 =
    200203* New feature : preview for pictures
    201 * New feature : configuration paths in config.php
     204* New feature : configuration paths in inc/define.php
    202205* Bug fix     : navigator in all statistics panel fix
    203206
  • s2member-secure-file-browser/trunk/s2member-secure-file-browser.php

    r727082 r728335  
    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.9
    9 Date: 2013-06-16
     8Version: 0.4.10
     9Date: 2013-06-19
    1010Author: Potsky
    1111Author URI: http://www.potsky.com/about/
Note: See TracChangeset for help on using the changeset viewer.