Changeset 1357267
- Timestamp:
- 02/24/2016 12:42:01 PM (10 years ago)
- Location:
- tweet-wheel/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
tweet-wheel.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tweet-wheel/trunk/readme.txt
r1356848 r1357267 4 4 Requires at least: 4.4 5 5 Tested up to: 4.4.2 6 Stable tag: 1.0.3 6 Stable tag: 1.0.3.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 85 85 == Changelog == 86 86 87 = 1.0.3.1 = 88 * Fixed a fatal error for new users upon the plugin activation 89 87 90 = 1.0.3 = 88 91 * Fixed: JS conflicts with Customiser -
tweet-wheel/trunk/tweet-wheel.php
r1356848 r1357267 5 5 * Plugin URI: http://www.tweet-wheel.com 6 6 * 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 8 8 * Author: Tomasz Lisiecki from Nerd Cow Ltd. 9 9 * Author URI: https://nerdcow.co.uk … … 32 32 * @var string 33 33 */ 34 public $version = '1.0.3 ';34 public $version = '1.0.3.1'; 35 35 36 36 // ... … … 1356 1356 require_once( 'includes/helpers.php' ); 1357 1357 1358 TWP()->init(); 1359 1358 1360 // Install 1359 1361 require_once( 'includes/classes/class-twp-install.php' ); … … 1368 1370 register_activation_hook( __FILE__, array( TweetWheel::instance(), 'activation_check' ) ); 1369 1371 1370 add_action(1371 'plugins_loaded',1372 array ( TweetWheel::instance(), 'init' )1373 );1374 1375 1372 endif;
Note: See TracChangeset
for help on using the changeset viewer.