mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
7 lines
246 B
PHP
7 lines
246 B
PHP
<h1>Error: 404</h1> Not Found.
|
|
<?
|
|
//Hide alerts for missing images and static requests
|
|
if (!preg_match("/\.(ico|jpg|jpeg|gif|png)$/", $_SERVER['REQUEST_URI']) && substr($_SERVER['REQUEST_URI'],0,9) !== '/static/') {
|
|
notify(STATUS_CHAN,'404');
|
|
}
|