blob: d05fef06414815eb7d403c649a87b2ce91257c69 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
if ( stream_isatty( STDOUT ) ) {
echo "\n";
echo "*******************************************************************************\n";
echo "NOTE: The maintenance/runScript.php entry point has been replaced by run.php!\n";
echo "*******************************************************************************\n";
echo "\n";
}
require __DIR__ . "/run.php";
|