Add bug and comment for r35609: * (bug 13434) Show a warning when hash identical...
[lhc/web/wiklou.git] / includes / SpecialLog.php
index a2233e7..3154ed1 100644 (file)
@@ -18,8 +18,8 @@
 # http://www.gnu.org/copyleft/gpl.html
 
 /**
- *
- * @addtogroup SpecialPage
+ * @file
+ * @ingroup SpecialPage
  */
 
 /**
@@ -47,13 +47,13 @@ function wfSpecialLog( $par = '' ) {
        # Set title and add header
        $loglist->showHeader( $pager->getType() );
        # Show form options
-       $loglist->showOptions( $pager->getType(), $pager->getUser(), $pager->getPage(), $pager->getPattern(), 
+       $loglist->showOptions( $pager->getType(), $pager->getUser(), $pager->getPage(), $pager->getPattern(),
                $pager->getYear(), $pager->getMonth() );
        # Insert list
        $logBody = $pager->getBody();
        if( $logBody ) {
                $wgOut->addHTML(
-                       $pager->getNavigationBar() . 
+                       $pager->getNavigationBar() .
                        $loglist->beginLogEventsList() .
                        $logBody .
                        $loglist->endLogEventsList() .
@@ -63,4 +63,3 @@ function wfSpecialLog( $par = '' ) {
                $wgOut->addWikiMsg( 'logempty' );
        }
 }
-