aboutsummaryrefslogtreecommitdiffstats
path: root/includes/specials/SpecialWatchlist.php
diff options
context:
space:
mode:
authorFomafix <fomafix@googlemail.com>2017-05-01 18:35:36 +0200
committerFomafix <fomafix@googlemail.com>2018-11-07 17:15:15 +0100
commita5a513547f509b282890fa79b0dc355deeda3ac3 (patch)
tree0c4fe68ad052fe309725566997d213732f00a737 /includes/specials/SpecialWatchlist.php
parentd6016fa1f985120829cfeb596571dd844da8b4e3 (diff)
downloadmediawikicore-a5a513547f509b282890fa79b0dc355deeda3ac3.tar.gz
mediawikicore-a5a513547f509b282890fa79b0dc355deeda3ac3.zip
Fix indenting and newlines
Like suggested in https://www.mediawiki.org/wiki/Manual:Coding_conventions#Line_continuation Change-Id: I86db3c24ffc69737c6917cfc68300ff4695961cd
Diffstat (limited to 'includes/specials/SpecialWatchlist.php')
-rw-r--r--includes/specials/SpecialWatchlist.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php
index 0ca6f932a00e..0fc6e13c416b 100644
--- a/includes/specials/SpecialWatchlist.php
+++ b/includes/specials/SpecialWatchlist.php
@@ -155,7 +155,7 @@ class SpecialWatchlist extends ChangesListSpecialPage {
'activeValue' => false,
'default' => $this->getUser()->getBoolOption( 'extendwatchlist' ),
'queryCallable' => function ( $specialClassName, $ctx, $dbr, &$tables,
- &$fields, &$conds, &$query_options, &$join_conds ) {
+ &$fields, &$conds, &$query_options, &$join_conds ) {
$nonRevisionTypes = [ RC_LOG ];
Hooks::run( 'SpecialWatchlistGetNonRevisionTypes', [ &$nonRevisionTypes ] );
if ( $nonRevisionTypes ) {
@@ -211,7 +211,7 @@ class SpecialWatchlist extends ChangesListSpecialPage {
],
'default' => ChangesListStringOptionsFilterGroup::NONE,
'queryCallable' => function ( $specialPageClassName, $context, $dbr,
- &$tables, &$fields, &$conds, &$query_options, &$join_conds, $selectedValues ) {
+ &$tables, &$fields, &$conds, &$query_options, &$join_conds, $selectedValues ) {
if ( $selectedValues === [ 'seen' ] ) {
$conds[] = $dbr->makeList( [
'wl_notificationtimestamp IS NULL',