r103547 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r103546‎ | r103547 | r103548 >
Date:00:51, 18 November 2011
Author:neilk
Status:deferred
Tags:
Comment:
fix because there are empty comments in production -- do not throw exception which prevents entire page
Modified paths:
  • /branches/wmf/1.18wmf1/extensions/MoodBar/FeedbackItem.php (modified) (history)

Diff [purge]

Index: branches/wmf/1.18wmf1/extensions/MoodBar/FeedbackItem.php
@@ -194,7 +194,7 @@
195195 return in_array( $value, self::$validTypes );
196196 } elseif ( $key == 'comment' ) {
197197 $comment_len = mb_strlen( $value );
198 - return $comment_len > 0 && $comment_len <= 140;
 198+ return $comment_len <= 140;
199199 }
200200
201201 return true;

Status & tagging log