diff options
Diffstat (limited to 'includes/api/ApiMove.php')
-rw-r--r-- | includes/api/ApiMove.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/api/ApiMove.php b/includes/api/ApiMove.php index 3e846e3b..c18036cf 100644 --- a/includes/api/ApiMove.php +++ b/includes/api/ApiMove.php @@ -88,7 +88,7 @@ class ApiMove extends ApiBase { $r['redirectcreated'] = ''; } - if( $toTitleExists ) { + if ( $toTitleExists ) { $r['moveoverredirect'] = ''; } @@ -99,7 +99,7 @@ class ApiMove extends ApiBase { if ( $retval === true ) { $r['talkfrom'] = $fromTalk->getPrefixedText(); $r['talkto'] = $toTalk->getPrefixedText(); - if( $toTalkExists ) { + if ( $toTalkExists ) { $r['talkmoveoverredirect'] = ''; } } else { |