mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Tooltips/Errors
* do not send 404 header for xml or tooltips
This commit is contained in:
@@ -594,8 +594,6 @@ class GenericPage
|
|||||||
// unknown entry
|
// unknown entry
|
||||||
public function notFound(string $title = '', string $msg = '') : void
|
public function notFound(string $title = '', string $msg = '') : void
|
||||||
{
|
{
|
||||||
header('HTTP/1.0 404 Not Found', true, 404);
|
|
||||||
|
|
||||||
if ($this->mode == CACHE_TYPE_TOOLTIP && method_exists($this, 'generateTooltip'))
|
if ($this->mode == CACHE_TYPE_TOOLTIP && method_exists($this, 'generateTooltip'))
|
||||||
{
|
{
|
||||||
header(MIME_TYPE_JSON);
|
header(MIME_TYPE_JSON);
|
||||||
@@ -608,6 +606,8 @@ class GenericPage
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
header('HTTP/1.0 404 Not Found', true, 404);
|
||||||
|
|
||||||
array_unshift($this->title, Lang::main('nfPageTitle'));
|
array_unshift($this->title, Lang::main('nfPageTitle'));
|
||||||
|
|
||||||
$this->contribute = CONTRIBUTE_NONE;
|
$this->contribute = CONTRIBUTE_NONE;
|
||||||
|
|||||||
Reference in New Issue
Block a user