Plugin Directory

Changeset 647888


Ignore:
Timestamp:
01/04/2013 04:09:46 PM (13 years ago)
Author:
fabifott
Message:

0.2.9.31

  • Fixed fatal error occuring in PHP Versions before 5.3 (func_get_args() can't be used as a function parameter)
  • Fixed CSS loading issue
Location:
wp-filebase
Files:
274 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-filebase/trunk/classes/Core.php

    r647610 r647888  
    1919
    2020static function InitClass()
    21 {
     21{   
     22    if(defined('WPFB_SIMPLE_LOAD')) return; // used with CSS proxy
     23   
    2224    //Load settings
    2325    self::$settings = (object)get_option(WPFB_OPT_NAME);
    24    
    25     if(defined('WPFB_SIMPLE_LOAD')) return; // used with CSS proxy
    2626   
    2727    // load lang
  • wp-filebase/trunk/readme.txt

    r647866 r647888  
    55Requires at least: 3.1
    66Tested up to: 3.5
    7 Stable tag: 0.2.9.30
     7Stable tag: 0.2.9.31
    88
    99Adds a powerful download manager including file categories, downloads counter, widgets, sorted file lists and more to your WordPress blog.
     
    114114== Changelog ==
    115115
    116 = 0.2.9.30 =
     116= 0.2.9.31 =
    117117* Fixed fatal error occuring in PHP Versions before 5.3 (`func_get_args() can't be used as a function parameter`)
     118* Fixed CSS loading issue
    118119
    119120= 0.2.9.29 =
  • wp-filebase/trunk/wp-filebase.php

    r647866 r647888  
    55Description: Adds a powerful downloads manager supporting file categories, download counter, widgets, sorted file lists and more to your WordPress blog.
    66Author: Fabian Schlieper
    7 Version: 0.2.9.30
     7Version: 0.2.9.31
    88Author URI: http://wpfilebase.com/
    99*/
     
    1212{
    1313    define('WPFB', 'wpfb');
    14     define('WPFB_VERSION', '0.2.9.30');
     14    define('WPFB_VERSION', '0.2.9.31');
    1515    define('WPFB_PLUGIN_ROOT', str_replace('\\','/',dirname(__FILE__)).'/');
    1616    if(!defined('ABSPATH')) {
Note: See TracChangeset for help on using the changeset viewer.