Plugin Directory

Changeset 950555


Ignore:
Timestamp:
07/17/2014 07:00:57 PM (12 years ago)
Author:
timmcdaniels
Message:

version 2.0

Location:
combine-css
Files:
10 added
3 edited

Legend:

Unmodified
Added
Removed
  • combine-css/trunk/classes/combine-css-class.php

    r945125 r950555  
    88    const nspace = 'combine-css';
    99    const pname = 'Combine CSS';
    10     const version = 1.9;
     10    const version = 2.0;
    1111
    1212    protected $_plugin_file;
     
    476476            $this->debug( 'Write: ' . $file );
    477477            $fp = fopen( $file, "w" );
    478             if ( flock( $fp, LOCK_EX ) ) { // do an exclusive lock
     478            if ( flock( $fp, LOCK_EX, $wouldblock ) ) { // do an exclusive lock
    479479                fwrite( $fp, $content );
    480                 flock( $fp, LOCK_UN ); // release the lock
     480                flock( $fp, LOCK_UN, $wouldblock ); // release the lock
    481481            }
    482482            fclose( $fp );
  • combine-css/trunk/combine-css.php

    r945117 r950555  
    55Description: WordPress plugin that combines, minifies, and compresses CSS files.
    66Author: Convoy
    7 Version: 1.9
     7Version: 2.0
    88Author URI: http://www.weareconvoy.com
    99Requires at least: 3.0.0
  • combine-css/trunk/readme.txt

    r945343 r950555  
    33Tags: css,combine,minify,gzip,compress
    44Tested up to: 3.9.1
    5 Stable tag: 1.9
     5Stable tag: 2.0
    66Requires at least: 3.0.1
    77
     
    4141
    4242== Changelog ==
     43
     44= 2.0 =
     45* fix flock warning spotted by Manuel Razzari on wpengine.
    4346
    4447= 1.9 =
Note: See TracChangeset for help on using the changeset viewer.