From 75b634b7b2615f3504082d28083c2f3dbfd9a329 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Fri, 6 Jul 2007 16:44:14 +0000 Subject: [PATCH] Coding conventions - spacing --- includes/Article.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Article.php b/includes/Article.php index 0cb007abde..e8ab1b282c 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2263,9 +2263,9 @@ class Article { $wgOut->addHTML( '

' . htmlspecialchars( $newComment ) . "

\n
\n" ); $flags = EDIT_UPDATE | EDIT_MINOR; - if($bot) + if( $bot ) $flags |= EDIT_FORCE_BOT; - if(!$this->doEdit( $target->getText(), $newComment, $flags)) + if( !$this->doEdit( $target->getText(), $newComment, $flags ) ) ; # todo: this error case has not been handled? Use db transactions? $wgOut->returnToMain( false ); -- 2.20.1