summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspiderr <spider@viovio.com>2013-03-13 10:17:47 -0400
committerspiderr <spider@viovio.com>2013-03-13 10:17:47 -0400
commit5e8183113b0a5e3b775a032da69d751ebd5b918c (patch)
tree7dfd521788670fd44bdf7c590c2f91dc6705a4f4
parent65d32daa2430045ac9a59d05a7bd638b44a4bfb5 (diff)
downloadtags-5e8183113b0a5e3b775a032da69d751ebd5b918c.tar.gz
tags-5e8183113b0a5e3b775a032da69d751ebd5b918c.tar.bz2
tags-5e8183113b0a5e3b775a032da69d751ebd5b918c.zip
use HTTP_GONE for not foundPRE_BOOTSTRAP
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 2092270..3d6f770 100644
--- a/index.php
+++ b/index.php
@@ -20,7 +20,7 @@ if( isset($_REQUEST['tags']) ){
$pageTitle .= ' '.tra( 'with' ).' '.$_REQUEST['tags'];
$gBitSystem->setCanonicalLink( $tag->getDisplayUriWithTag( $_REQUEST['tags'] ) );
} else {
- $gBitSystem->setHttpStatus( HttpStatusCodes::HTTP_NOT_FOUND );
+ $gBitSystem->setHttpStatus( HttpStatusCodes::HTTP_GONE );
}
$tagData = $tag->getList( $tagHash );
$gBitSmarty->assign( 'tagData', $tagData["data"] );