Plugin Directory

Changeset 929746


Ignore:
Timestamp:
06/10/2014 03:14:39 PM (12 years ago)
Author:
timmcdaniels
Message:

version 1.0

Location:
combine-js
Files:
11 added
3 edited

Legend:

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

    r929740 r929746  
    88    const nspace = 'combine-js';
    99    const pname = 'Combine JS';
    10     const version = 0.9;
     10    const version = 1.0;
    1111
    1212    protected $_plugin_file;
     
    193193    function create_tmp_dir() {
    194194        $this->tmp_dir = $this->get_plugin_path() . '/tmp/';
    195         if ( ! is_writable( dirname( $this->tmp_dir ) ) ) $this->tmp_dir = sys_get_temp_dir();
     195        if ( ! is_writable( dirname( $this->tmp_dir ) ) ) $this->tmp_dir = sys_get_temp_dir() . '/';
    196196        if ( ! file_exists( $this->tmp_dir ) ) wp_mkdir_p( $this->tmp_dir );
    197197    }
  • combine-js/trunk/combine-js.php

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

    r929740 r929746  
    55Requires at least: 3.0.1
    66Tested up to: 3.4.2
    7 Stable tag: 0.9
     7Stable tag: 1.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 1.0 =
     42* Fix system tmp directory path.
    4043
    4144= 0.9 =
Note: See TracChangeset for help on using the changeset viewer.