Plugin Directory

Changeset 938589


Ignore:
Timestamp:
06/25/2014 03:58:13 PM (12 years ago)
Author:
timmcdaniels
Message:

version 1.6

Location:
combine-js/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • combine-js/trunk/classes/combine-js-class.php

    r935265 r938589  
    88    const nspace = 'combine-js';
    99    const pname = 'Combine JS';
    10     const version = 1.5;
     10    const version = 1.6;
    1111
    1212    protected $_plugin_file;
     
    154154            // add ignore files
    155155
    156             $ignore_list = explode( "\n", $this->settings_data['ignore_files'] );
     156            $ignore_list = preg_split( "/\r\n|\n|\r/", $this->settings_data['ignore_files'] );
    157157            foreach ( $ignore_list as $item ) $this->js_files_ignore[] = $item;
    158158            $this->debug( 'ignore list: ' . implode( ', ', $this->js_files_ignore ) );
  • combine-js/trunk/combine-js.php

    r935265 r938589  
    55Description: WordPress plugin that attempts to combine, minify, and compress JS.
    66Author: Convoy
    7 Version: 1.5
     7Version: 1.6
    88Author URI: http://www.weareconvoy.com
    99Requires at least: 3.0.0
  • combine-js/trunk/readme.txt

    r935265 r938589  
    55Requires at least: 3.0.1
    66Tested up to: 3.9.1
    7 Stable tag: 1.5
     7Stable tag: 1.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 1.6 =
     42* Changed explode to regex split for ignore list based on feedback from ckgrafico.
    4043
    4144= 1.5 =
Note: See TracChangeset for help on using the changeset viewer.