Changeset 938589
- Timestamp:
- 06/25/2014 03:58:13 PM (12 years ago)
- Location:
- combine-js/trunk
- Files:
-
- 3 edited
-
classes/combine-js-class.php (modified) (2 diffs)
-
combine-js.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
combine-js/trunk/classes/combine-js-class.php
r935265 r938589 8 8 const nspace = 'combine-js'; 9 9 const pname = 'Combine JS'; 10 const version = 1. 5;10 const version = 1.6; 11 11 12 12 protected $_plugin_file; … … 154 154 // add ignore files 155 155 156 $ignore_list = explode( "\n", $this->settings_data['ignore_files'] );156 $ignore_list = preg_split( "/\r\n|\n|\r/", $this->settings_data['ignore_files'] ); 157 157 foreach ( $ignore_list as $item ) $this->js_files_ignore[] = $item; 158 158 $this->debug( 'ignore list: ' . implode( ', ', $this->js_files_ignore ) ); -
combine-js/trunk/combine-js.php
r935265 r938589 5 5 Description: WordPress plugin that attempts to combine, minify, and compress JS. 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-js/trunk/readme.txt
r935265 r938589 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 … … 38 38 39 39 == Changelog == 40 41 = 1.6 = 42 * Changed explode to regex split for ignore list based on feedback from ckgrafico. 40 43 41 44 = 1.5 =
Note: See TracChangeset
for help on using the changeset viewer.