|
Revision 1327, 1.2 kB
(checked in by rats, 4 months ago)
|
* Fixed: --scan-knownbad-files and --check-deleted are no longer supported by rkhunter
* Fixed #1471: chkrootkit should be in lenny / hardy
* Updated Chinese (simplified)
* Updated German
* Fixed #1475: typo on installation (ispcp-setup)
* Fixed: default user for rkhunter.log
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
require '../include/ispcp-lib.php'; |
|---|
| 22 |
|
|---|
| 23 |
check_login(__FILE__); |
|---|
| 24 |
|
|---|
| 25 |
$theme_color = Config::get('USER_INITIAL_THEME'); |
|---|
| 26 |
|
|---|
| 27 |
if(isset($_GET['del_id']) && !empty($_GET['del_id'])) |
|---|
| 28 |
$del_id = $_GET['del_id']; |
|---|
| 29 |
else{ |
|---|
| 30 |
$_SESSION['orderaldel'] = '_no_'; |
|---|
| 31 |
header("Location: domains_manage.php"); |
|---|
| 32 |
die(); |
|---|
| 33 |
} |
|---|
| 34 |
|
|---|
| 35 |
$query = "DELETE FROM domain_aliasses WHERE alias_id='".$del_id."'"; |
|---|
| 36 |
$rs = exec_query($sql, $query); |
|---|
| 37 |
header("Location: domains_manage.php"); |
|---|
| 38 |
die(); |
|---|
| 39 |
|
|---|
| 40 |
?> |
|---|