Opened 16 years ago
Closed 16 years ago
#16119 closed defect (bug) (fixed)
Incorrect variable assignment in wp-admin/network/themes.php
| Reported by: | westi | Owned by: | westi |
|---|---|---|---|
| Priority: | highest omg bbq | Milestone: | 3.1 |
| Component: | Network Admin | Version: | 3.1 |
| Severity: | normal | Keywords: | has-patch commit |
| Cc: | Focuses: | multisite |
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
@
16 years ago
- Keywords has-patch commit added
- Milestone Awaiting Review → 3.1
- Priority normal → highest omg bbq
Checking other spots too.
#2
@
16 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Patch