2013-10-07 12:17:06 +00:00
|
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
****************************************************************************************************
|
|
|
|
|
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved. |
|
|
|
|
|
| @ Author : ArslanHassan |
|
|
|
|
|
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com |
|
|
|
|
|
****************************************************************************************************
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
require'../includes/admin_config.php';
|
|
|
|
|
$userquery->admin_login_check();
|
2014-01-27 11:30:36 +00:00
|
|
|
|
/* Assigning page and subpage */
|
|
|
|
|
if(!defined('MAIN_PAGE')){
|
|
|
|
|
define('MAIN_PAGE', 'Dashboard');
|
|
|
|
|
}
|
2013-10-07 12:17:06 +00:00
|
|
|
|
|
|
|
|
|
// $latest = get_latest_cb_info();
|
|
|
|
|
$Cbucket->cbinfo['latest'] = $latest;
|
|
|
|
|
if($Cbucket->cbinfo['version'] < $Cbucket->cbinfo['latest']['version'])
|
|
|
|
|
$Cbucket->cbinfo['new_available'] = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template_files('index.html');
|
|
|
|
|
display_it();
|
|
|
|
|
?>
|