#!/usr/local/bin/perl # edit_host.cgi # Edit or create a host address require './net-lib.pl'; $access{'hosts'} == 2 || &error($text{'hosts_ecannot'}); &ReadParse(); if ($in{'new'}) { &ui_print_header(undef, $text{'hosts_create'}, ""); } else { &ui_print_header(undef, $text{'hosts_edit'}, ""); @hosts = &list_hosts(); $h = $hosts[$in{'idx'}]; } print "
\n"; &ui_print_footer("list_hosts.cgi", $text{'hosts_return'});