Ticket #7297 (closed defect (bug): fixed)
Typo in wp-includes/widget.php
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | low | Milestone: | 2.6.1 |
| Component: | General | Version: | |
| Severity: | trivial | Keywords: | |
| 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
Change History
robertdimarco — 4 years ago
-
attachment
widgets-typo.patch.txt
added
- Status changed from new to closed
- Resolution set to fixed
Note: See
TracTickets for help on using
tickets.

Patch to fix typo in widgets.php