Changeset 1463
Legend:
- Unmodified
- Added
- Removed
-
trunk/rss/author.php
r1462 r1463 35 35 36 36 if (!$ra) { 37 rss_redirect(); 37 rss_404(); 38 exit; 38 39 } 39 40 -
trunk/rss/feed.php
r1433 r1463 287 287 ($d == 0 && $m == 0 && $y == 0) 288 288 ) { 289 header("HTTP/1.1 404 Not Found"); 290 echo "404 Page Not Found"; 289 rss_404(); 291 290 exit; 292 291 } -
trunk/rss/util.php
r1461 r1463 1154 1154 return !rss_user_check_user_level(RSS_USER_LEVEL_PRIVATE); 1155 1155 } 1156 1157 // Send a crappy 404 (to save bandwidth) for webbots 1158 function rss_404() { 1159 header("HTTP/1.1 404 Not Found"); 1160 echo "404 Page Not Found\n"; 1161 } 1162 1156 1163 ?>
