diff options
Diffstat (limited to 'maintenance/rebuildFileCache.php')
-rw-r--r-- | maintenance/rebuildFileCache.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/maintenance/rebuildFileCache.php b/maintenance/rebuildFileCache.php index 3165b97f..12ed9fac 100644 --- a/maintenance/rebuildFileCache.php +++ b/maintenance/rebuildFileCache.php @@ -21,7 +21,7 @@ * @ingroup Maintenance */ -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; /** * Maintenance script that builds file cache for content pages. @@ -153,10 +153,11 @@ class RebuildFileCache extends Maintenance { $this->output( "Done!\n" ); // Remove these to be safe - if ( isset( $wgTitle ) ) + if ( isset( $wgTitle ) ) { unset( $wgTitle ); + } } } $maintClass = "RebuildFileCache"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN; |