Plugin Directory


Ignore:
Timestamp:
06/03/2013 05:52:33 PM (13 years ago)
Author:
fabifott
Message:

WP-Filebase 0.2.9.37

  • Fixed Batch Uploader
  • Further memory optimizations
  • Updated DataTables to 1.9.4
  • Fixed monthly/daily traffic limit
  • Fixed download range header handling (thanks to mrogaski)
  • Minified DataTables init JS to prevent auto <p>
  • Added wpfilebase_file_downloaded hook for download logging
  • Fixed HTML escaping for some file template vars
Location:
wp-filebase/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-filebase/trunk

    • Property svn:ignore set to
      .git
  • wp-filebase/trunk/classes/WidgetForms.php

    r702142 r722195  
    3535        $instance['sort-asc'] = !empty($instance['sort-asc']);
    3636       
    37         wpfb_loadclass('Admin');
     37        wpfb_loadclass('Models');
    3838    ?>
    3939    <div>
     
    5050            <select id="<?php echo $obj->get_field_id('sort-by'); ?>" name="<?php echo $obj->get_field_name('sort-by'); ?>">
    5151            <?php
    52                 $sort_vars = WPFB_Admin::CatSortFields();
     52                $sort_vars = WPFB_Models::CatSortFields();
    5353                foreach($sort_vars as $tag => $name)
    5454                {
     
    8181            if(!isset($instance[$prop])) $instance[$prop] = $val;
    8282       
    83         wpfb_loadclass('Admin','Output');
     83        wpfb_loadclass('Admin','Models','Output');
    8484    ?>
    8585    <div>
     
    103103            <select id="<?php echo $obj->get_field_id('sort-by'); ?>" name="<?php echo $obj->get_field_name('sort-by'); ?>">
    104104            <?php
    105                 $sort_vars = WPFB_Admin::FileSortFields();
     105                $sort_vars = WPFB_Models::FileSortFields();
    106106                foreach($sort_vars as $tag => $name)
    107107                {
     
    120120        <p><label for="<?php echo $obj->get_field_id('tpl'); ?>"><?php _e('Template:', WPFB); ?>
    121121            <input class="widefat" type="text" id="<?php echo $obj->get_field_id('id'); ?>" name="<?php echo $obj->get_field_name('tpl'); ?>" value="<?php echo esc_attr($instance['tpl']); ?>" /></label>
    122             <br /><?php echo WPFB_Admin::TplFieldsSelect($obj->get_field_id('id'), true); ?>
     122            <br /><?php echo WPFB_Models::TplFieldsSelect($obj->get_field_id('id'), true); ?>
    123123        </p>
    124124    </div>
Note: See TracChangeset for help on using the changeset viewer.