Changeset 1225468
- Timestamp:
- 08/19/2015 06:33:33 PM (11 years ago)
- Location:
- custom-wp-update-message
- Files:
-
- 4 added
- 2 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/custom-wp-update-message.php (added)
-
tags/1.0.3/readme.txt (added)
-
tags/1.0.3/screenshot-1.jpg (added)
-
trunk/custom-wp-update-message.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-wp-update-message/trunk/custom-wp-update-message.php
r1083471 r1225468 26 26 } 27 27 28 function remove_nag() {28 public static function remove_nag() { 29 29 remove_action( 'admin_notices', 'update_nag', 3); 30 30 } 31 function set_messages() {31 public static function set_messages() { 32 32 add_action( 'admin_notices', array( __CLASS__, 'remove_nag' ), 1 ); 33 33 add_action( 'admin_notices', array( __CLASS__, 'update_nag' ), 1 ); -
custom-wp-update-message/trunk/readme.txt
r1083471 r1225468 4 4 Tags: core update 5 5 Requires at least: 3.0 6 Tested up to: 4. 17 Stable tag: 1.0. 26 Tested up to: 4.3 7 Stable tag: 1.0.3 8 8 9 9 Customize and control the WordPress update message in the dashboard. … … 24 24 == Changelog == 25 25 26 = 1.0.3 = 27 * Fixed strict error messages regarding static functions 28 * Checked for WP 4.3 compatibility 29 26 30 = 1.0.2 = 27 31 * Add textdomain for translations
Note: See TracChangeset
for help on using the changeset viewer.