Improvements in MediaWiki namespace handling, enhanced rollback
[lhc/web/wiklou.git] / includes / Namespace.php
index 3831ca0..a14de1e 100644 (file)
@@ -31,7 +31,9 @@ class Namespace {
 
        function isMovable( $index )
        {
-               if ( $index < NS_MAIN || $index > NS_WP_TALK ) { return false; }
+               if ( $index < NS_MAIN || $index == NS_IMAGE ) { 
+                       return false; 
+               }
                return true;
        }