RT 4.2.11, ticket#13852
[freeside.git] / rt / share / html / Admin / Tools / Shredder / autohandler
index 62909b0..9a5ecd1 100644 (file)
 %# END BPS TAGGED BLOCK }}}
 <%INIT>
 unless( $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => $RT::System ) ) {
-       return $m->comp( 'Elements/Error/NoRights' );
+    return $m->comp( 'Elements/Error/NoRights' );
 }
 
 use RT::Shredder ();
 my $path = RT::Shredder->StoragePath;
 unless( -d $path && -w _ ) {
-       return $m->comp( 'Elements/Error/NoStorage', Path => $path );
+    return $m->comp( 'Elements/Error/NoStorage', Path => $path );
 }
 
 $m->call_next(%ARGS);