Fixes a bug where server would not run when there are spaces in documentRoot.

This commit is contained in:
U-Zyn Chua 2013-08-06 15:19:59 +08:00
parent c01aacf72d
commit d9b99d0599

View file

@ -129,8 +129,8 @@ class ServerShell extends AppShell {
$command = sprintf("php -S %s:%d -t %s %s",
$this->_host,
$this->_port,
$this->_documentRoot,
$this->_documentRoot . '/index.php'
escapeshellarg($this->_documentRoot),
escapeshellarg($this->_documentRoot . '/index.php')
);
$port = ($this->_port == self::DEFAULT_PORT) ? '' : ':' . $this->_port;