Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F584931
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
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
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Jul 5, 5:31 AM (11 h, 21 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227414
Default Alt Text
(1 KB)
Attached To
Mode
rMW mediawiki
Attached
Detach File
Event Timeline
Log In to Comment