2013-10-07 12:17:06 +00:00
|
|
|
<?php
|
2017-01-10 12:49:44 +05:00
|
|
|
|
|
|
|
/**
|
|
|
|
*************************************************************
|
|
|
|
| Copyright (c) 2007-2017 Clip-Bucket.com. All rights reserved.
|
|
|
|
| @ Author : Arslan Hassan
|
|
|
|
| @ Software : ClipBucket
|
|
|
|
| @ Modified : { January 10th, 2017 } { Saqib Razzaq } { Updated copyright date }
|
|
|
|
*************************************************************
|
2013-10-07 12:17:06 +00:00
|
|
|
*/
|
|
|
|
|
2016-06-08 22:53:06 -07:00
|
|
|
define("THIS_PAGE",'404');
|
|
|
|
require 'includes/config.inc.php';
|
2013-10-07 12:17:06 +00:00
|
|
|
|
2016-06-08 22:53:06 -07:00
|
|
|
if(file_exists(LAYOUT."/404.html")) {
|
|
|
|
template_files('404.html');
|
|
|
|
$videos = $cbvid->get_videos(array("order"=>"date_added DESC","limit"=>4));
|
|
|
|
assign('videos',$videos);
|
|
|
|
} else {
|
|
|
|
$data = "404_error";
|
|
|
|
if(has_access('admin_access')) {
|
|
|
|
e(sprintf(lang("err_warning"),"404","http://docs.clip-bucket.com/?p=154"),"w");
|
|
|
|
}
|
|
|
|
e(lang($data));
|
|
|
|
}
|
2013-10-07 12:17:06 +00:00
|
|
|
|
2016-06-08 22:53:06 -07:00
|
|
|
display_it();
|
|
|
|
|
|
|
|
?>
|