* (Bug 16121) Add a note that a page move was without creating a redirect in the...
[lhc/web/wiklou.git] / includes / LogPage.php
index 228c3fd..50a9a23 100644 (file)
@@ -210,6 +210,10 @@ class LogPage {
                                                if( $params[2] ) {
                                                        $details .= ' ['.wfMsg('protect-summary-cascade').']';
                                                }
+                                       } else if ( $type == 'move' && count( $params ) == 3 ) {
+                                               if( $params[2] ) {
+                                                       $details .= ' [' . wfMsg( 'move-redirect-suppressed' ) . ']';
+                                               }
                                        }
                                        $rv = wfMsgReal( $wgLogActions[$key], $params, true, !$skin ) . $details;
                                }