Plugin Directory

Changeset 1357267


Ignore:
Timestamp:
02/24/2016 12:42:01 PM (10 years ago)
Author:
NerdCow
Message:

fixed fatal error 1.0.3.1

Location:
tweet-wheel/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tweet-wheel/trunk/readme.txt

    r1356848 r1357267  
    44Requires at least: 4.4
    55Tested up to: 4.4.2
    6 Stable tag: 1.0.3
     6Stable tag: 1.0.3.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585== Changelog ==
    8686
     87= 1.0.3.1 =
     88* Fixed a fatal error for new users upon the plugin activation
     89
    8790= 1.0.3 =
    8891* Fixed: JS conflicts with Customiser
  • tweet-wheel/trunk/tweet-wheel.php

    r1356848 r1357267  
    55 * Plugin URI: http://www.tweet-wheel.com
    66 * Description: A powerful tool that keeps your Twitter profile active. Even when you are busy.
    7  * Version: 1.0.3
     7 * Version: 1.0.3.1
    88 * Author: Tomasz Lisiecki from Nerd Cow Ltd.
    99 * Author URI: https://nerdcow.co.uk
     
    3232     * @var string
    3333     */
    34     public $version = '1.0.3';
     34    public $version = '1.0.3.1';
    3535   
    3636    // ...
     
    13561356require_once( 'includes/helpers.php' );
    13571357
     1358TWP()->init();
     1359
    13581360// Install     
    13591361require_once( 'includes/classes/class-twp-install.php' );       
     
    13681370register_activation_hook( __FILE__, array( TweetWheel::instance(), 'activation_check' ) ); 
    13691371
    1370 add_action(     
    1371     'plugins_loaded',       
    1372     array ( TweetWheel::instance(), 'init' )       
    1373 );
    1374 
    13751372endif;
Note: See TracChangeset for help on using the changeset viewer.