generalize split_cgi_args so that other scripts can use it. Add an

argument.
This commit is contained in:
kestes%walrus.com 2001-08-13 19:55:25 +00:00
Родитель d1df4373a4
Коммит c76e8f2812
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -2,8 +2,8 @@
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# $Revision: 1.14 $
# $Date: 2001-07-27 20:41:31 $
# $Revision: 1.15 $
# $Date: 2001-08-13 19:55:25 $
# $Author: kestes%walrus.com $
# $Source: /home/jrmuizel/cvs-mirror/mozilla/webtools/tinderbox2/src/bin/tinder.cgi,v $
# $Name: $
@ -202,8 +202,9 @@ sub construct_times_vec {
sub parse_args {
my (%form) = HTMLPopUp::split_cgi_args();
my (%form) = HTMLPopUp::split_cgi_args(
'cgi_remove_args' => ['daemon-mode'],
);
my ($tree) = $form{'tree'};
my ($daemon_mode) = (grep /daemon-mode/, keys %form);