X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=htdocs%2Fbrowse%2Fagent_type.cgi;h=ff3a68cf6efd0716c09e190ea60a144181045e26;hb=c116ce940c33dcd7e37a87a8eb2936e17cc68b11;hp=8bbf1e291a47c16fe398758b4027203ab9f4f291;hpb=65a4f2fb7d37996f89b5e22dac831e57d467d050;p=freeside.git diff --git a/htdocs/browse/agent_type.cgi b/htdocs/browse/agent_type.cgi index 8bbf1e291..ff3a68cf6 100755 --- a/htdocs/browse/agent_type.cgi +++ b/htdocs/browse/agent_type.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: agent_type.cgi,v 1.4 1999-01-18 09:41:15 ivan Exp $ +# $Id: agent_type.cgi,v 1.5 1999-01-19 05:13:25 ivan Exp $ # # ivan@sisd.com 97-dec-10 # @@ -11,7 +11,11 @@ # lose background, FS::CGI ivan@sisd.com 98-sep-2 # # $Log: agent_type.cgi,v $ -# Revision 1.4 1999-01-18 09:41:15 ivan +# Revision 1.5 1999-01-19 05:13:25 ivan +# for mod_perl: no more top-level my() variables; use vars instead +# also the last s/create/new/; +# +# Revision 1.4 1999/01/18 09:41:15 ivan # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl # (good idea anyway) # @@ -23,6 +27,7 @@ # use strict; +use vars qw( $cgi $p $agent_type ); use CGI; use CGI::Carp qw(fatalsToBrowser); use FS::UID qw(cgisuidsetup swapuid); @@ -32,11 +37,11 @@ use FS::agent_type; use FS::type_pkgs; use FS::part_pkg; -my($cgi) = new CGI; +$cgi = new CGI; &cgisuidsetup($cgi); -my($p)=popurl(2); +$p = popurl(2); print $cgi->header( '-expires' => 'now' ), header("Agent Type Listing", menubar( 'Main Menu' => $p, )), "Agent types define groups of packages that you can then assign to". @@ -47,7 +52,6 @@ print $cgi->header( '-expires' => 'now' ), header("Agent Type Listing", menubar( END -my($agent_type); foreach $agent_type ( sort { $a->getfield('typenum') <=> $b->getfield('typenum') } qsearch('agent_type',{}) ) {