#7297 closed defect (bug) (fixed)
Typo in wp-includes/widget.php
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.6.1 | Priority: | low |
Severity: | trivial | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
I believe there is a minor typo at line 1046 of widgets.php.
http://trac.wordpress.org/browser/trunk/wp-includes/widgets.php#L1046
The code currently reads:
$widget_args = array( 'number' => $widegt_args );
but I believe it should be :
$widget_args = array( 'number' => $widget_args );
I will attach a patch to fix this typo.
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
Patch to fix typo in widgets.php