[AtomFormat.php] Eliminate PHP Notice when running in CLI mode (#824)

This commit is contained in:
triatic 2018-09-12 14:37:27 +01:00 committed by Teromene
parent 622802e5d4
commit fe94914eb5

View file

@ -11,7 +11,7 @@ class AtomFormat extends FormatAbstract{
$httpHost = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';
$httpInfo = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '';
$serverRequestUri = $this->xml_encode($_SERVER['REQUEST_URI']);
$serverRequestUri = isset($_SERVER['REQUEST_URI']) ? $this->xml_encode($_SERVER['REQUEST_URI']) : '';
$extraInfos = $this->getExtraInfos();
$title = $this->xml_encode($extraInfos['name']);