Changeset 950555
- Timestamp:
- 07/17/2014 07:00:57 PM (12 years ago)
- Location:
- combine-css
- Files:
-
- 10 added
- 3 edited
-
tags/2.0 (added)
-
tags/2.0/classes (added)
-
tags/2.0/classes/combine-css-class.php (added)
-
tags/2.0/combine-css.php (added)
-
tags/2.0/css.php (added)
-
tags/2.0/lang (added)
-
tags/2.0/readme.txt (added)
-
tags/2.0/screenshot-1.png (added)
-
tags/2.0/views (added)
-
tags/2.0/views/admin_settings_form.php (added)
-
trunk/classes/combine-css-class.php (modified) (2 diffs)
-
trunk/combine-css.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
combine-css/trunk/classes/combine-css-class.php
r945125 r950555 8 8 const nspace = 'combine-css'; 9 9 const pname = 'Combine CSS'; 10 const version = 1.9;10 const version = 2.0; 11 11 12 12 protected $_plugin_file; … … 476 476 $this->debug( 'Write: ' . $file ); 477 477 $fp = fopen( $file, "w" ); 478 if ( flock( $fp, LOCK_EX ) ) { // do an exclusive lock478 if ( flock( $fp, LOCK_EX, $wouldblock ) ) { // do an exclusive lock 479 479 fwrite( $fp, $content ); 480 flock( $fp, LOCK_UN ); // release the lock480 flock( $fp, LOCK_UN, $wouldblock ); // release the lock 481 481 } 482 482 fclose( $fp ); -
combine-css/trunk/combine-css.php
r945117 r950555 5 5 Description: WordPress plugin that combines, minifies, and compresses CSS files. 6 6 Author: Convoy 7 Version: 1.97 Version: 2.0 8 8 Author URI: http://www.weareconvoy.com 9 9 Requires at least: 3.0.0 -
combine-css/trunk/readme.txt
r945343 r950555 3 3 Tags: css,combine,minify,gzip,compress 4 4 Tested up to: 3.9.1 5 Stable tag: 1.95 Stable tag: 2.0 6 6 Requires at least: 3.0.1 7 7 … … 41 41 42 42 == Changelog == 43 44 = 2.0 = 45 * fix flock warning spotted by Manuel Razzari on wpengine. 43 46 44 47 = 1.9 =
Note: See TracChangeset
for help on using the changeset viewer.