diff options
Diffstat (limited to 'maintenance/checkImages.php')
-rw-r--r-- | maintenance/checkImages.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/checkImages.php b/maintenance/checkImages.php index c05d9151..e6aea537 100644 --- a/maintenance/checkImages.php +++ b/maintenance/checkImages.php @@ -20,7 +20,7 @@ * @file * @ingroup Maintenance */ -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; /** * Maintenance script to check images to see if they exist, are readable, etc. @@ -87,4 +87,4 @@ class CheckImages extends Maintenance { } $maintClass = "CheckImages"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN; |