From c3bf50bff4bc57eef7e3ac9b614bb51632c69fb1 Mon Sep 17 00:00:00 2001 From: Magnus Manske Date: Fri, 5 Aug 2005 06:34:01 +0000 Subject: [PATCH] removed I-am-sure checkbox --- includes/SpecialValidate.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SpecialValidate.php b/includes/SpecialValidate.php index 1c43c98c56..5107fb0ac3 100644 --- a/includes/SpecialValidate.php +++ b/includes/SpecialValidate.php @@ -493,7 +493,7 @@ class Validation { global $wgRequest; $this->topicList = $this->getTopicList(); - $iamsure = $wgRequest->getVal( "iamsure", "0" ) == 1; + $iamsure = true ; # Sure by default # $wgRequest->getVal( "iamsure", "0" ) == 1; if( $iamsure && $wgRequest->getVal( "m_add", "--" ) != "--" ) { $new_topic = $wgRequest->getVal( "m_topic" ); @@ -529,8 +529,8 @@ class Validation { $r .= '1 .. ' . "\n"; $r .= '' . "\n"; $r .= "\n"; - $r .= '

'; - $r .= '

\n"; +# $r .= '

'; +# $r .= '

\n"; $r .= "\n"; return $r; } -- 2.20.1