2010-07-10 11:29:26 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
********************************************************************
|
|
|
|
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
|
|
|
|
| @ Author : ArslanHassan
|
|
|
|
| @ Software : ClipBucket , © PHPBucket.com
|
|
|
|
********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
define("THIS_PAGE",'404');
|
|
|
|
require 'includes/config.inc.php';
|
|
|
|
|
|
|
|
if(file_exists(LAYOUT."/404.html")) {
|
|
|
|
template_files('404.html');
|
|
|
|
} else {
|
2010-08-07 11:29:15 +00:00
|
|
|
$data = "404_error";
|
2010-07-28 07:42:12 +00:00
|
|
|
if(has_access('admin_access'))
|
2010-08-16 06:40:20 +00:00
|
|
|
e(sprintf(lang("err_warning"),"404","http://docs.clip-bucket.com/?p=154"),"w");
|
2010-07-28 07:42:12 +00:00
|
|
|
e(lang($data));
|
2010-07-10 11:29:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
display_it();
|
|
|
|
?>
|