clipbucket/upload/403.php
Arslan Hassan a59714e117 Fixed : user_videos.php pagination
Fixed : Error Page Links
2010-08-16 06:40:20 +00:00

24 lines
No EOL
649 B
PHP

<?php
/*
********************************************************************
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , © PHPBucket.com
********************************************************************
*/
define("THIS_PAGE",'403');
require 'includes/config.inc.php';
if(file_exists(LAYOUT."/403.html")) {
template_files('403.html');
} else {
$data = "403_error";
if(has_access('admin_access'))
e(sprintf(lang("err_warning"),"403","http://docs.clip-bucket.com/?p=154"),"w");
e(lang($data));
}
display_it();
?>