Plugin Directory

Changeset 937339


Ignore:
Timestamp:
06/23/2014 06:51:32 PM (12 years ago)
Author:
timmcdaniels
Message:

version 1.6

Location:
combine-css
Files:
10 added
3 edited

Legend:

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

    r934594 r937339  
    88    const nspace = 'combine-css';
    99    const pname = 'Combine CSS';
    10     const version = 1.5;
     10    const version = 1.6;
    1111
    1212    protected $_plugin_file;
     
    433433    */
    434434    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        }
    437440    }
    438441
  • combine-css/trunk/combine-css.php

    r934594 r937339  
    55Description: WordPress plugin that combines, minifies, and compresses CSS files.
    66Author: Convoy
    7 Version: 1.5
     7Version: 1.6
    88Author URI: http://www.weareconvoy.com
    99Requires at least: 3.0.0
  • combine-css/trunk/readme.txt

    r934594 r937339  
    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
     
    4444
    4545== Changelog ==
     46
     47= 1.6 =
     48* Fixed PHP Warning reported by thorstone137.
    4649
    4750= 1.5 =
Note: See TracChangeset for help on using the changeset viewer.