Revision 1805
Added by Luisehahne about 13 years ago
| index.php | ||
|---|---|---|
| 16 | 16 |
*/ |
| 17 | 17 |
|
| 18 | 18 |
// Include the configuration file |
| 19 |
if(!defined('WB_URL') && file_exists(realpath('../../config.php'))) {
|
|
| 20 |
require('../../config.php');
|
|
| 19 |
$config_file = realpath('../../config.php');
|
|
| 20 |
if(file_exists($config_file) && !defined('WB_URL'))
|
|
| 21 |
{
|
|
| 22 |
require_once($config_file); |
|
| 21 | 23 |
} |
| 22 | 24 |
|
| 23 |
//require_once(WB_PATH."/framework/class.login.php"); |
|
| 24 | 25 |
if(!class_exists('login', false)){ require_once(WB_PATH.'/framework/class.login.php'); }
|
| 25 | 26 |
if(!class_exists('frontend', false)){ require_once(WB_PATH.'/framework/class.frontend.php'); }
|
| 26 | 27 |
|
| ... | ... | |
| 72 | 73 |
'GROUPS_TABLE' => TABLE_PREFIX."groups", |
| 73 | 74 |
) |
| 74 | 75 |
); |
| 75 |
//$admin->print_footer(); |
|
Also available in: Unified diff
! show more information in awaiting activation /admin/users
! set input passord to autocomplete off /admin/users and /admin/prfeferences
! add Timezone abbreviation to time format
! change time and date formats fill with leading zeros
! optimize REQUEST_METHOD to get page_id and section_id
! more request vars are possible by this method