Plugin Directory

Changeset 729157


Ignore:
Timestamp:
06/21/2013 02:20:04 AM (13 years ago)
Author:
borgboy
Message:

PHP version check bug fix

Location:
article-forge/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • article-forge/trunk/ArticleForge/Constants.php

    r729153 r729157  
    66    const PackageName     = 'Article Forge';
    77
    8     const Version         = '1.1.1';
     8    const Version         = '1.1.2';
    99
    1010    const PackagePrefix   = 'articleforge';
  • article-forge/trunk/ArticleForge/Install.php

    r729145 r729157  
    3939        // Validate PHP version, TODO: validate WP version
    4040        // TODO: Clean this up
    41         if ( version_compare(PHP_VERSION, '5.3.0', '>') ) {
     41        if ( version_compare(PHP_VERSION, '5.3.0', '<') ) {
    4242            deactivate_plugins( plugin_basename(dirname(dirname(__FILE__))) . '/main.php', true );
    4343            wp_die("Article Forge requires at least PHP v5.3.0; you're version: " . PHP_VERSION . "   " .
  • article-forge/trunk/main.php

    r729153 r729157  
    77 * Author:      Anthony Wells
    88 * Author URI:  http://www.bytewisemcu.org/profile/awells
    9  * Version:     1.1.1
     9 * Version:     1.1.2
    1010 * Text Domain: articleforge
    1111 * Domain Path: /languages/
  • article-forge/trunk/readme.txt

    r729153 r729157  
    44Requires at least: 3.0.1
    55Tested up to: 3.5.1
    6 Stable tag: 1.1.1
     6Stable tag: 1.1.2
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858== Changelog ==
    5959
     60= 1.1.2 =
     61* Fix PHP version activation check
     62* Bump release to bring wp svn back into sync
     63
    6064= 1.1.1 =
    6165* Modified code to support PHP 5.3.x
Note: See TracChangeset for help on using the changeset viewer.