Page MenuHomePhorge

No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None
diff --git a/includes/logging/LogEventsList.php b/includes/logging/LogEventsList.php
index 0b08ffa8263..98bba431b4a 100644
--- a/includes/logging/LogEventsList.php
+++ b/includes/logging/LogEventsList.php
@@ -416,11 +416,7 @@ class LogEventsList extends ContextSource {
// If change tag editing is available to this user, return the checkbox
if ( $this->flags & self::USE_CHECKBOXES && $this->showTagEditUI ) {
- return Html::check(
- 'showhiderevisions',
- false,
- [ 'name' => 'ids[' . $row->log_id . ']' ]
- );
+ return Html::check( 'ids[' . $row->log_id . ']', false );
}
// no one can hide items from the suppress log.
@@ -444,11 +440,7 @@ class LogEventsList extends ContextSource {
if ( !self::userCan( $row, LogPage::DELETED_RESTRICTED, $authority ) ) {
$del = Html::check( 'deleterevisions', false, [ 'disabled' => 'disabled' ] );
} else {
- $del = Html::check(
- 'showhiderevisions',
- false,
- [ 'name' => 'ids[' . $row->log_id . ']' ]
- );
+ $del = Html::check( 'ids[' . $row->log_id . ']', false );
}
} else {
// If event was hidden from sysops

File Metadata

Mime Type
text/x-diff
Expires
Sat, Jul 5, 5:31 AM (11 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227414
Default Alt Text
(1 KB)

Event Timeline