blob: a469c84053614dad9042b72b87e2d4bcf72e992a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<HTML>
<HEAD>
<SCRIPT TYPE="text/javascript">
window.top.location.href = '<% $url %>';
</SCRIPT>
</HEAD>
</HTML>
<%init>
my @username = map encode_entities($_), $cgi->param('username');
my $LengthMin = encode_entities( $cgi->param('LengthMin') );
my $custnum = encode_entities( $cgi->param('custnum') );
my $query = join('&', map "username=$_", @username).
"&LengthMin=$LengthMin".
"&custnum=$custnum";
#XXX '&pkgnum=$pkgnum";need to be for specific package/location, not just for a customer... default to active(/ordered) package in a pkg_class w/ticketing_queueid, otherwise, a popup? we're getting complicated like form-creat_ticket.html
my $url = $p. 'rt/Search/Schedule.html?'. $query;
</%init>
|