diff options
Diffstat (limited to 'maintenance/undelete.php')
-rw-r--r-- | maintenance/undelete.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/undelete.php b/maintenance/undelete.php index ea8b0c4b..c890c69b 100644 --- a/maintenance/undelete.php +++ b/maintenance/undelete.php @@ -21,7 +21,7 @@ * @ingroup Maintenance */ -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; class Undelete extends Maintenance { public function __construct() { @@ -55,4 +55,4 @@ class Undelete extends Maintenance { } $maintClass = "Undelete"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN; |