Skip to content

Commit

Permalink
Fix Manage Plugins UI for protected plugins
Browse files Browse the repository at this point in the history
Fixes #23658
  • Loading branch information
atrol committed Nov 20, 2017
1 parent 4e76408 commit 54783df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manage_plugin_page.php
Expand Up @@ -185,13 +185,13 @@ function ( $p_p1, $p_p2 ) {
} else {
echo '<td class="center">',
'<select name="priority_' . $t_basename . '"',
check_disabled( $t_protected ), ' class="input-sm">',
' class="input-sm">',
print_plugin_priority_list( $t_priority ),
'</select>','</td>';
echo '<td class="center">',
'<label>',
'<input type="checkbox" class="ace" name="protected_' . $t_basename . '"',
check_disabled( $t_protected ), check_checked( $t_protected ), ' />',
check_checked( $t_protected ), ' />',
'<span class="lbl"></span>',
'</label>',
'</select>','</td>';
Expand Down

0 comments on commit 54783df

Please sign in to comment.