Opened 14 years ago
Closed 14 years ago
#16119 closed defect (bug) (fixed)
Incorrect variable assignment in wp-admin/network/themes.php
Reported by: | westi | Owned by: | westi |
---|---|---|---|
Milestone: | 3.1 | Priority: | highest omg bbq |
Severity: | normal | Version: | 3.1 |
Component: | Network Admin | Keywords: | has-patch commit |
Focuses: | multisite | Cc: |
Description
$_GET['disabled'] = absint( $_GET['deleted'] ); echo '<div id="message" class="updated"><p>' . sprintf( _n( 'Theme deleted.', '%s themes deleted.', $_GET['deleted'] ), number_format_i18n( $_GET['deleted'] ) ) . '</p></div>';
Should be:
$_GET['deleted'] = absint( $_GET['deleted'] ); echo '<div id="message" class="updated"><p>' . sprintf( _n( 'Theme deleted.', '%s themes deleted.', $_GET['deleted'] ), number_format_i18n( $_GET['deleted'] ) ) . '</p></div>';
Attachments (1)
Change History (5)
#1
@
14 years ago
- Keywords has-patch commit added
- Milestone changed from Awaiting Review to 3.1
- Priority changed from normal to highest omg bbq
Checking other spots too.
#2
@
14 years ago
site-themes.php looks good. The deleted branch is only here and it's the only spot incorrect. This was mine I think, via [17130].
Note: See
TracTickets for help on using
tickets.
Patch