As per Rob's suggestion, remove autosummaries for short new pages, and replace them...
authorAndrew Garrett <werdna@users.mediawiki.org>
Thu, 23 Nov 2006 11:15:46 +0000 (11:15 +0000)
committerAndrew Garrett <werdna@users.mediawiki.org>
Thu, 23 Nov 2006 11:15:46 +0000 (11:15 +0000)
includes/Article.php
languages/messages/MessagesEn.php

index 515ba40..e5e3414 100644 (file)
@@ -2712,8 +2712,8 @@ class Article {
                if ($summary)
                        return $summary;
 
-               #Long new page autosummaries
-               if ($flags & EDIT_NEW && strlen($newtext) > 500) {
+               #New page autosummaries
+               if ($flags & EDIT_NEW && strlen($newtext)) {
                        #If they're making a new article, give its text, truncated, in the summary.
                        global $wgContLang;
                        $truncatedtext = $wgContLang->truncate( $newtext, max( 0, 200 - 
@@ -2721,15 +2721,6 @@ class Article {
                        $summary = wfMsgForContent( 'autosumm-new', $truncatedtext );
                }
 
-               #Short new page autosummaries
-               if ($flags & EDIT_NEW && strlen($newtext) <= 500) {
-                       #If they're making a new short article, give its text in the summary.
-                       global $wgContLang;
-                       $truncatedtext = $wgContLang->truncate( $newtext, max( 0, 200 - 
-                               strlen( wfMsgForContent( 'autosumm-shortnew') ) ), '...' );
-                       $summary = wfMsgForContent( 'autosumm-shortnew', $truncatedtext );
-               }
-
                if ($summary)
                        return $summary;
 
index a4da4b8..846e256 100644 (file)
@@ -2613,7 +2613,6 @@ Please confirm that really want to recreate this page.',
 'autosumm-blank' => 'Removing all content from page',
 'autosumm-replace' => 'Replacing page with \'$1\'',
 'autoredircomment' => 'Redirecting to [[$1]]', # This should be changed to the new naming convention, but existed beforehand.
-'autosumm-shortnew' => 'Short New page: $1',
 'autosumm-new' => 'New page: $1',
 
 # Autoblock whitelist