Changeset 937339
- Timestamp:
- 06/23/2014 06:51:32 PM (12 years ago)
- Location:
- combine-css
- Files:
-
- 10 added
- 3 edited
-
tags/1.6 (added)
-
tags/1.6/classes (added)
-
tags/1.6/classes/combine-css-class.php (added)
-
tags/1.6/combine-css.php (added)
-
tags/1.6/css.php (added)
-
tags/1.6/lang (added)
-
tags/1.6/readme.txt (added)
-
tags/1.6/screenshot-1.png (added)
-
tags/1.6/views (added)
-
tags/1.6/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
r934594 r937339 8 8 const nspace = 'combine-css'; 9 9 const pname = 'Combine CSS'; 10 const version = 1. 5;10 const version = 1.6; 11 11 12 12 protected $_plugin_file; … … 433 433 */ 434 434 function get_file_from_src( $src ) { 435 $frags = explode( '/', $src ); 436 return $frags[count( $frags ) - 1]; 435 $frags = array(); 436 if ( @strlen( $src ) ) { 437 $frags = explode( '/', $src ); 438 return $frags[count( $frags ) - 1]; 439 } 437 440 } 438 441 -
combine-css/trunk/combine-css.php
r934594 r937339 5 5 Description: WordPress plugin that combines, minifies, and compresses CSS files. 6 6 Author: Convoy 7 Version: 1. 57 Version: 1.6 8 8 Author URI: http://www.weareconvoy.com 9 9 Requires at least: 3.0.0 -
combine-css/trunk/readme.txt
r934594 r937339 5 5 Requires at least: 3.0.1 6 6 Tested up to: 3.9.1 7 Stable tag: 1. 57 Stable tag: 1.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 44 44 45 45 == Changelog == 46 47 = 1.6 = 48 * Fixed PHP Warning reported by thorstone137. 46 49 47 50 = 1.5 =
Note: See TracChangeset
for help on using the changeset viewer.