ftp_ansicht repariert und neues msd
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
MyOOS [Dumper]
|
||||
http://www.oos-shop.de/
|
||||
|
||||
Copyright (c) 2016 by the MyOOS Development Team.
|
||||
Copyright (c) 2013 - 2022 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
@ -18,14 +18,16 @@
|
||||
|
||||
define('OOS_VALID_MOD', true);
|
||||
|
||||
if (!@ob_start("ob_gzhandler")) @ob_start();
|
||||
include ('./inc/functions.php');
|
||||
$page=(isset($_GET['page'])) ? $_GET['page'] : 'main.php';
|
||||
if (!file_exists("./work/config/myoosdumper.php"))
|
||||
{
|
||||
header("location: install.php");
|
||||
ob_end_flush();
|
||||
die();
|
||||
if (!@ob_start('ob_gzhandler')) {
|
||||
@ob_start();
|
||||
}
|
||||
|
||||
include './inc/functions.php';
|
||||
$page = (isset($_GET['page'])) ? $_GET['page'] : 'main.php';
|
||||
if (!file_exists('./work/config/myoosdumper.php')) {
|
||||
header('location: install.php');
|
||||
ob_end_flush();
|
||||
exit();
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE HTML>
|
||||
@ -34,18 +36,16 @@ if (!file_exists("./work/config/myoosdumper.php"))
|
||||
<meta charset="utf-8" />
|
||||
<meta name="robots" content="noindex,nofollow" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>MyOOS [Dumper]</title>
|
||||
</head>
|
||||
|
||||
<frameset border=0 cols="190,*">
|
||||
<frame name="MyOOS_Dumper_menu" src="menu.php" scrolling="no" noresize
|
||||
frameborder="0" marginwidth="0" marginheight="0">
|
||||
<frame name="MyOOS_Dumper_content" src="<?php
|
||||
echo $page;
|
||||
?>"
|
||||
scrolling="auto" frameborder="0" marginwidth="0" marginheight="0">
|
||||
<frame name="MyOOS_Dumper_content" src="<?php echo $page; ?>" scrolling="auto" frameborder="0" marginwidth="0" marginheight="0">
|
||||
</frameset>
|
||||
</html>
|
||||
<?php
|
||||
|
||||
ob_end_flush();
|
||||
exit();
|
||||
|
Reference in New Issue
Block a user