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/Sync.php

    r702142 r722195  
    459459       
    460460        if(is_dir($cat->GetLocalPath()))
    461             chmod ($cat->GetLocalPath(), octdec(WPFB_PERM_DIR));
     461            @chmod ($cat->GetLocalPath(), octdec(WPFB_PERM_DIR));
    462462    }
    463463   
     
    473473   
    474474    // chmod
    475     chmod ($upload_dir, octdec(WPFB_PERM_DIR));
     475    @chmod ($upload_dir, octdec(WPFB_PERM_DIR));
    476476    for($i = 0; $i < count($files); $i++)
    477477    {
     
    543543    if(!empty($_GET['debug']))
    544544    {
     545        wpfb_loadclass('Output');
    545546        $ms = self::GetMemStats();
    546547        echo "<!-- [$tag] (MEM: ". WPFB_Output::FormatFilesize($ms['used'])." / $ms[limit]) BACKTRACE:\n";
Note: See TracChangeset for help on using the changeset viewer.