nexus clients

This commit is contained in:
xiaomlove
2021-04-21 00:07:32 +08:00
parent be9b8634c4
commit c7a6616618
23 changed files with 897 additions and 31 deletions

View File

@@ -23,7 +23,7 @@ if ($action == 'view') {
} elseif ($action == 'submit') {
try {
$result = $field->save($_REQUEST);
redirect('fields.php?action=view');
nexus_redirect('fields.php?action=view');
} catch (\Exception $e) {
stderr($lang_fields['field_management'], $e->getMessage());
}
@@ -48,7 +48,7 @@ if ($action == 'view') {
}
$sql = "delete from torrents_custom_fields where id = $id";
$res = sql_query($sql);
redirect('fields.php?action=view');
nexus_redirect('fields.php?action=view');
}