Plugin Directory

Changeset 741308


Ignore:
Timestamp:
07/15/2013 09:54:27 PM (13 years ago)
Author:
mneil
Message:

check for cache directory before traversing to avoid fatal error on admin cache page

Location:
mncombine/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mncombine/trunk/README.txt

    r738903 r741308  
    55Requires at least: 3.3.1
    66Tested up to: 3.5.2
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88
    99Easily manage the merging and compression of js and css files from plugins and themes
     
    4040conjunction with development mode.
    4141
     42= Can I exclude certain pages from using the plugin =
     43
     44As of version 1.1.0 you can exclude pages from compiling/compressing css or js files using a regular expression in the general
     45settings tab.
     46
     47
    4248== Screenshots ==
    4349
     
    4955
    5056== Changelog ==
     57
     58= 1.1.1 =
     59* Fixed Fatal Error on "Cache" admin page before cache folder had been generated
    5160
    5261= 1.1.0 =
  • mncombine/trunk/class-plugin-mncombine.php

    r738903 r741308  
    498498  private function find_cache()
    499499  {
     500    if( !is_dir($this->uploads['basedir'] . '/' . $this->upload_dir) )
     501      return;
     502   
    500503    $directory = new RecursiveDirectoryIterator( $this->uploads['basedir'] . '/' . $this->upload_dir );
    501504   
Note: See TracChangeset for help on using the changeset viewer.