Changeset 1079150
- Timestamp:
- 01/30/2015 06:08:19 PM (11 years ago)
- Location:
- mncombine/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
class-plugin-mncombine.php (modified) (2 diffs)
-
lang/mn-combine.pot (modified) (1 diff)
-
mncombine.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mncombine/trunk/README.txt
r819955 r1079150 4 4 Tags: css, javascript, js, cascade, style, sheet, combine, compress, uglify, minify, closure, admin, aggregate, cache 5 5 Requires at least: 3.3.1 6 Tested up to: 3.87 Stable tag: 1.1. 36 Tested up to: 4.1 7 Stable tag: 1.1.5 8 8 9 9 Easily manage the merging and compression of js and css files from plugins and themes … … 56 56 == Changelog == 57 57 58 = 1.1.5 = 59 * Skip checking when script handle is empty 60 61 = 1.1.4 = 62 * Suppress errors on strstr($js, $use) when use is empty 63 64 = 1.1.3 = 65 * Verified working on WP version 3.8.1 66 58 67 = 1.1.2 = 59 68 * Verified against WP version 3.6.1 -
mncombine/trunk/class-plugin-mncombine.php
r819955 r1079150 25 25 * @var string 26 26 */ 27 protected $version = '1.1. 3';27 protected $version = '1.1.5'; 28 28 29 29 /** … … 659 659 $match = false; 660 660 //loop the files list to combine 661 foreach($assets['combine']['js'] as $js ) 662 //if the file is in the list 663 if( strstr( $js, $use ) ) 664 { 665 //we have a match, we'll continue below 666 $match = true; 667 break; 668 } 661 if( $use ) 662 foreach($assets['combine']['js'] as $js ) 663 //if the file is in the list 664 if( @strstr( $js, $use ) ) 665 { 666 //we have a match, we'll continue below 667 $match = true; 668 break; 669 } 669 670 //file isn't in the combine list 670 671 if( !$match ) -
mncombine/trunk/lang/mn-combine.pot
r819955 r1079150 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: MnCombine 1.1. 3\n"5 "Project-Id-Version: MnCombine 1.1.5\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/mncombine\n" 7 7 "POT-Creation-Date: 2013-11-12 23:56:16+00:00\n" -
mncombine/trunk/mncombine.php
r819955 r1079150 15 15 * Plugin URI: http://mneilsworld.com/php-2/mncombine-wp-plugin-release 16 16 * Description: Easily manage the merging and compression of js and css files from plugins and themes 17 * Version: 1.1. 317 * Version: 1.1.5 18 18 * Author: Michael Neil 19 19 * Author URI: http://mneilsworld.com/
Note: See TracChangeset
for help on using the changeset viewer.