Plugin Directory

Changeset 950578


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

version 2.1

Location:
combine-js
Files:
11 added
3 edited

Legend:

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

    r945128 r950578  
    88    const nspace = 'combine-js';
    99    const pname = 'Combine JS';
    10     const version = 2.0;
     10    const version = 2.1;
    1111
    1212    protected $_plugin_file;
     
    519519            $this->debug( 'Write: ' . $file );
    520520            $fp = fopen( $file, "w" );
    521             if ( flock( $fp, LOCK_EX ) ) { // do an exclusive lock
     521            if ( flock( $fp, LOCK_EX, $wouldblock ) ) { // do an exclusive lock
    522522                fwrite( $fp, $content );
    523                 flock( $fp, LOCK_UN ); // release the lock
     523                flock( $fp, LOCK_UN, $wouldblock ); // release the lock
    524524            }
    525525            fclose( $fp );
  • combine-js/trunk/combine-js.php

    r945128 r950578  
    55Description: WordPress plugin that attempts to combine, minify, and compress JS.
    66Author: Convoy
    7 Version: 2.0
     7Version: 2.1
    88Author URI: http://www.weareconvoy.com
    99Requires at least: 3.0.0
  • combine-js/trunk/readme.txt

    r945339 r950578  
    33Tags: javascript,combine,minify,gzip,compress
    44Tested up to: 3.9.1
    5 Stable tag: 2.0
     5Stable tag: 2.1
    66Requires at least: 3.0.1
    77
     
    3636
    3737== Changelog ==
     38
     39= 2.1 =
     40* fix flock warning spotted by Manuel Razzari on wpengine.
    3841
    3942= 2.0 =
Note: See TracChangeset for help on using the changeset viewer.