Changeset 929746
- Timestamp:
- 06/10/2014 03:14:39 PM (12 years ago)
- Location:
- combine-js
- Files:
-
- 11 added
- 3 edited
-
tags/1.0 (added)
-
tags/1.0/classes (added)
-
tags/1.0/classes/combine-js-class.php (added)
-
tags/1.0/classes/jsmin.php (added)
-
tags/1.0/combine-js.php (added)
-
tags/1.0/js.php (added)
-
tags/1.0/lang (added)
-
tags/1.0/readme.txt (added)
-
tags/1.0/screenshot-1.png (added)
-
tags/1.0/views (added)
-
tags/1.0/views/admin_settings_form.php (added)
-
trunk/classes/combine-js-class.php (modified) (2 diffs)
-
trunk/combine-js.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
combine-js/trunk/classes/combine-js-class.php
r929740 r929746 8 8 const nspace = 'combine-js'; 9 9 const pname = 'Combine JS'; 10 const version = 0.9;10 const version = 1.0; 11 11 12 12 protected $_plugin_file; … … 193 193 function create_tmp_dir() { 194 194 $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() . '/'; 196 196 if ( ! file_exists( $this->tmp_dir ) ) wp_mkdir_p( $this->tmp_dir ); 197 197 } -
combine-js/trunk/combine-js.php
r929740 r929746 5 5 Description: WordPress plugin that attempts to combine, minify, and compress JS. 6 6 Author: Convoy 7 Version: 0.97 Version: 1.0 8 8 Author URI: http://www.weareconvoy.com 9 9 Requires at least: 3.0.0 -
combine-js/trunk/readme.txt
r929740 r929746 5 5 Requires at least: 3.0.1 6 6 Tested up to: 3.4.2 7 Stable tag: 0.97 Stable tag: 1.0 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.0 = 42 * Fix system tmp directory path. 40 43 41 44 = 0.9 =
Note: See TracChangeset
for help on using the changeset viewer.