Changeset 1102262
- Timestamp:
- 03/01/2015 04:02:24 AM (11 years ago)
- Location:
- autostock/trunk
- Files:
-
- 2 edited
-
autostock.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autostock/trunk/autostock.php
r1084838 r1102262 4 4 * Plugin URI: http://kevinphillips.co.nz 5 5 * Description: Car dealer stock management plugin for WordPress. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: Kevin Phillips 8 8 * Author URI: http://kevinphillips.co.nz … … 39 39 function autostock_activation() { 40 40 41 if (version_compare( PHP_MIN_VERSION, PHP_VERSION ) >= 0) {41 if (version_compare( PHP_VERSION, PHP_MIN_VERSION, '<' ) ) { 42 42 wp_die('Sorry your php version is ' . PHP_VERSION . ' and you need a minimum of ' . PHP_MIN_VERSION ); 43 43 } -
autostock/trunk/readme.txt
r1084844 r1102262 5 5 Requires at least: 4.1 6 6 Tested up to: 4.1 7 Stable tag: 1.0. 27 Stable tag: 1.0.4 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 58 58 == Changelog == 59 59 60 1.0.1. Added settings options and taxonomy for makes and models 61 1.0.2. Added custom car features to car post types as taxonomy with checkboxes. 62 1.0.3. Added Vehicle Details and Features category to post type 60 = 1.0.4 = 61 * Added PHP compare to stop plugin being loaded into site with php less than 5.3.6 62 63 = 1.0.3 = 64 * Added Vehicle Details and Features category to post type 65 66 = 1.0.2 = 67 * Added custom car features to car post types as taxonomy with checkboxes. 68 69 = 1.0.1 = 70 * Added settings options and taxonomy for makes and models 71 72 63 73 64 74 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.