Changeset 1233083
- Timestamp:
- 08/28/2015 12:55:22 PM (11 years ago)
- Location:
- ns-author-widget/trunk
- Files:
-
- 2 edited
-
Readme.txt (modified) (3 diffs)
-
ns-author-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ns-author-widget/trunk/Readme.txt
r1185073 r1233083 3 3 Tags: author widget, author box, netscripter, wordpress, widget, plugin, 4 4 Requires at least: 3.0 5 Tested up to: 4. 2.25 Tested up to: 4.3.0 6 6 Stable tag: trunk 7 7 License: GPLv3 … … 55 55 == Changelog == 56 56 57 = 1.3 = 58 * Changed WP_Widget that is deprecated since version 4.3.0, to __construct. 59 57 60 = 1.2 = 58 61 * A change of style and some css class names so there could not be any conflict and overrides with Font Awesome styles already added in themes. 59 62 60 63 = 1.1 = 64 * 1.3 61 65 * 1.2 62 66 * 1.1 … … 64 68 == Upgrade Notice == 65 69 70 = 1.3 = 71 This version makes NS Author Widget compatibile with 4.3.0 release and remove WP_Widget is deprecated since version 4.3.0! Use __construct() Notice. Upgrade immediately. 72 66 73 = 1.2 = 67 74 This version fixes potential css style conflicts and overrides. Upgrade immediately. -
ns-author-widget/trunk/ns-author-widget.php
r1185073 r1233083 28 28 class ns_aw_info extends WP_Widget { 29 29 function ns_aw_info () { 30 $this->WP_Widget('ns_aw_info', 'NS Author Widget','Select the category to display'); }30 parent::__construct('ns_aw_info', 'NS Author Widget','Select the category to display'); } 31 31 32 32 public function form( $instance ) {
Note: See TracChangeset
for help on using the changeset viewer.