This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
kiduc
/
bibiuc.com
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
59
Wiki
Activity
Browse Source
Bugfix: 404 Header on 404-Page not send properly
pull/103/head
Kanti
11 years ago
parent
fd7eb864ec
commit
0e26311034
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
system/includes/functions.php
+ 3
- 1
system/includes/functions.php
View File
@ -1192,7 +1192,9 @@ EOF;
// The not found error
function
not_found
()
{
error
(
404
,
render
(
'404'
,
null
,
false
));
header
(
$_SERVER
[
"
SERVER_PROTOCOL
"
]
.
"
404 Not Found
"
);
render
(
'404'
,
null
,
false
);
die
();
}
// Turn an array of posts into an RSS feed
Write
Preview
Loading…
Cancel
Save