16 lines
178 B
PHP
16 lines
178 B
PHP
|
<html>
|
||
|
<head>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php include '../config.php';?>
|
||
|
|
||
|
|
||
|
<?php
|
||
|
if ($sicktype > "1") {
|
||
|
require "sickrage.php";
|
||
|
} else {
|
||
|
require "sickbeard.php";
|
||
|
}
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|