Changeset 1658985
- Timestamp:
- 05/17/2017 01:24:57 AM (9 years ago)
- Location:
- wordpress-beta-tester/tags/1.1.2
- Files:
-
- 2 edited
- 1 copied
-
. (copied) (copied from wordpress-beta-tester/trunk)
-
readme.txt (modified) (1 diff)
-
wp-beta-tester.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-beta-tester/tags/1.1.2/readme.txt
r1657363 r1658985 22 22 23 23 == Changelog == 24 25 = 1.1.2 = 26 * Remove anonymous function for PHP 5.2 compatibility. 24 27 25 28 = 1.1.1 = -
wordpress-beta-tester/tags/1.1.2/wp-beta-tester.php
r1657363 r1658985 5 5 Description: Allows you to easily upgrade to Beta releases. 6 6 Author: Peter Westwood 7 Version: 1.1. 17 Version: 1.1.2 8 8 Network: true 9 9 Author URI: http://blog.ftwr.co.uk/ … … 253 253 254 254 /* Initialise ourselves */ 255 add_action( 'plugins_loaded', function() { 255 add_action( 'plugins_loaded', 'load_beta_tester_plugin' ); 256 257 function load_beta_tester_plugin() { 256 258 global $wp_beta_tester_instance; 257 259 $wp_beta_tester_instance = new wp_beta_tester(); 258 } );260 } 259 261 260 262 // Clear down
Note: See TracChangeset
for help on using the changeset viewer.