2009-08-25 12:16:42 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
****************************************************************************************************
|
2009-09-28 05:23:50 +00:00
|
|
|
|
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved. |
|
2009-08-25 12:16:42 +00:00
|
|
|
|
| @ Author : ArslanHassan |
|
|
|
|
|
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com |
|
|
|
|
|
****************************************************************************************************
|
|
|
|
|
*/
|
2009-09-28 05:23:50 +00:00
|
|
|
|
define('THIS_PAGE','index');
|
2009-08-25 12:16:42 +00:00
|
|
|
|
require 'includes/config.inc.php';
|
|
|
|
|
$pages->page_redir();
|
|
|
|
|
|
|
|
|
|
if(isset($_GET['cb_ver']) && $is_admin)
|
|
|
|
|
{
|
|
|
|
|
$msg = "ClipBucket ".CB_VERSION."";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-09-28 05:23:50 +00:00
|
|
|
|
//Displaying The Template
|
|
|
|
|
template_files('index.html');
|
|
|
|
|
display_it();
|
2009-08-25 12:16:42 +00:00
|
|
|
|
?>
|