[Bug 390938] New: How about reducing limit of sql for recent translation
page?
diff --git a/html/recent.php b/html/recent.php
index d8daf67..b1e4529 100644
--- a/html/recent.php
+++ b/html/recent.php
@@ -45,7 +45,7 @@
 }
 $LIMIT 		= getHTTPParameter("limit");
 if($LIMIT == "" || $LIMIT <= 0 || $LIMIT > 20000) {
-	$LIMIT = 200;
+	$LIMIT = 25;
 }
 $LAYOUT 		= getHTTPParameter("layout");
 if($LAYOUT == "list" || $LAYOUT == "table") {