mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ENHANCEMENT If no arguments specified for cli-script.php/sake, then provide a friendly message to the user on where to get help (from r100989)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@111560 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
390d9b45dd
commit
cb435df6af
@ -65,7 +65,12 @@ require_once("core/model/DB.php");
|
||||
DB::connect($databaseConfig);
|
||||
|
||||
// Get the request URL from the querystring arguments
|
||||
$url = $_SERVER['argv'][1];
|
||||
$url = isset($_SERVER['argv'][1]) ? $_SERVER['argv'][1] : null;
|
||||
if(!$url) {
|
||||
echo 'Please specify an argument to cli-script.php/sake. For more information, visit http://doc.silverstripe.org/doku.php?id=sake';
|
||||
die();
|
||||
}
|
||||
|
||||
$_SERVER['REQUEST_URI'] = BASE_URL . '/' . $url;
|
||||
|
||||
// Direct away - this is the "main" function, that hands control to the apporopriate controller
|
||||
|
Loading…
Reference in New Issue
Block a user