Comments updated
This commit is contained in:
parent
8f2db7c4b6
commit
9cc653de9b
1 changed files with 19 additions and 16 deletions
|
@ -1,25 +1,28 @@
|
|||
<?php
|
||||
/*
|
||||
********************************************************************
|
||||
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
|
||||
| Copyright (c) 2007-2016 Clip-Bucket.com. All rights reserved.
|
||||
| @ Author : ArslanHassan
|
||||
| @ Software : ClipBucket , © PHPBucket.com
|
||||
| @ Software : ClipBucket , © PHPBucket.com
|
||||
| @ Modified : June 9, 2016 by Saqib Razzaq
|
||||
********************************************************************
|
||||
*/
|
||||
|
||||
define("THIS_PAGE",'404');
|
||||
require 'includes/config.inc.php';
|
||||
define("THIS_PAGE",'404');
|
||||
require 'includes/config.inc.php';
|
||||
|
||||
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));
|
||||
}
|
||||
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));
|
||||
}
|
||||
|
||||
display_it();
|
||||
?>
|
||||
display_it();
|
||||
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue