Changeset 950578
- Timestamp:
- 07/17/2014 07:42:12 PM (12 years ago)
- Location:
- combine-js
- Files:
-
- 11 added
- 3 edited
-
tags/2.1 (added)
-
tags/2.1/classes (added)
-
tags/2.1/classes/combine-js-class.php (added)
-
tags/2.1/classes/jsmin.php (added)
-
tags/2.1/combine-js.php (added)
-
tags/2.1/js.php (added)
-
tags/2.1/lang (added)
-
tags/2.1/readme.txt (added)
-
tags/2.1/screenshot-1.png (added)
-
tags/2.1/views (added)
-
tags/2.1/views/admin_settings_form.php (added)
-
trunk/classes/combine-js-class.php (modified) (2 diffs)
-
trunk/combine-js.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
combine-js/trunk/classes/combine-js-class.php
r945128 r950578 8 8 const nspace = 'combine-js'; 9 9 const pname = 'Combine JS'; 10 const version = 2. 0;10 const version = 2.1; 11 11 12 12 protected $_plugin_file; … … 519 519 $this->debug( 'Write: ' . $file ); 520 520 $fp = fopen( $file, "w" ); 521 if ( flock( $fp, LOCK_EX ) ) { // do an exclusive lock521 if ( flock( $fp, LOCK_EX, $wouldblock ) ) { // do an exclusive lock 522 522 fwrite( $fp, $content ); 523 flock( $fp, LOCK_UN ); // release the lock523 flock( $fp, LOCK_UN, $wouldblock ); // release the lock 524 524 } 525 525 fclose( $fp ); -
combine-js/trunk/combine-js.php
r945128 r950578 5 5 Description: WordPress plugin that attempts to combine, minify, and compress JS. 6 6 Author: Convoy 7 Version: 2. 07 Version: 2.1 8 8 Author URI: http://www.weareconvoy.com 9 9 Requires at least: 3.0.0 -
combine-js/trunk/readme.txt
r945339 r950578 3 3 Tags: javascript,combine,minify,gzip,compress 4 4 Tested up to: 3.9.1 5 Stable tag: 2. 05 Stable tag: 2.1 6 6 Requires at least: 3.0.1 7 7 … … 36 36 37 37 == Changelog == 38 39 = 2.1 = 40 * fix flock warning spotted by Manuel Razzari on wpengine. 38 41 39 42 = 2.0 =
Note: See TracChangeset
for help on using the changeset viewer.