Revision: 49223
Author:   aaron
Date:     2009-04-05 19:42:00 +0000 (Sun, 05 Apr 2009)

Log Message:
-----------
* Removed unused par
* Style tweaks

Modified Paths:
--------------
    trunk/phase3/includes/specials/SpecialRevisiondelete.php

Modified: trunk/phase3/includes/specials/SpecialRevisiondelete.php
===================================================================
--- trunk/phase3/includes/specials/SpecialRevisiondelete.php    2009-04-05 
19:17:54 UTC (rev 49222)
+++ trunk/phase3/includes/specials/SpecialRevisiondelete.php    2009-04-05 
19:42:00 UTC (rev 49223)
@@ -1190,10 +1190,9 @@
                }
                list($log,$logtype) = explode( '/',$title->getDBKey(), 2 );
                $result = $this->dbw->select( 'logging', '*',
-                       array(
-                               'log_type' => $logtype,
-                               'log_id' => $where ),
-                       __METHOD__ );
+                       array( 'log_type' => $logtype, 'log_id' => $where ),
+                       __METHOD__
+               );
                while( $row = $this->dbw->fetchObject( $result ) ) {
                        $logRows[$row->log_id] = $row;
                }
@@ -1203,18 +1202,17 @@
                                $success = false;
                                continue; // Must exist
                        } else if( !LogEventsList::userCan($logRows[$logid], 
LogPage::DELETED_RESTRICTED)
-                                || $logRows[$logid]->log_type == 'suppress' ) {
-                       // Don't hide from oversight log!!!
-                       $userAllowedAll=false;
+                               || $logRows[$logid]->log_type == 'suppress' )
+                       {
+                       $userAllowedAll=false; // Don't hide from oversight 
log!!!
                        continue;
                        }
                        // Which logs did we change anything about?
                        if( $logRows[$logid]->log_deleted != $bitfield ) {
-                               $log_Ids[]=$logid;
-                               $count++;
-
+                               $log_Ids[] = $logid;
                                $this->updateLogs( $logRows[$logid], $bitfield 
);
-                               $this->updateRecentChangesLog( 
$logRows[$logid], $bitfield, true );
+                               $this->updateRecentChangesLog( 
$logRows[$logid], $bitfield );
+                               $count++;
                        }
                }
                // Don't log or touch if nothing changed



_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to