mirror of
https://github.com/jakejarvis/jbb.git
synced 2025-04-26 06:45:22 -04:00
27 lines
441 B
PHP
Executable File
27 lines
441 B
PHP
Executable File
<?php
|
|
include('../conf.php');
|
|
require('../functions.php');
|
|
|
|
session_start()
|
|
|
|
?>
|
|
|
|
|
|
<?php
|
|
if ($ck_userID == "") {
|
|
echo "<meta http-equiv=\"refresh\" content=\"0; url=./login.php\">";
|
|
} else {
|
|
|
|
echo "
|
|
<HTML>
|
|
<HEAD>
|
|
<FRAMESET COLS=\"205,*\" BORDER=\"0\">
|
|
<FRAME NAME=\"left\" SRC=\"admin.php?act=left\" RESIZE=\"no\">
|
|
<FRAME NAME=\"main\" SRC=\"admin.php?act=main\" RESIZE=\"no\">
|
|
</FRAMESET>
|
|
</HEAD>
|
|
</HTML>";
|
|
|
|
|
|
}
|
|
?>
|