# ipdb/cgi-bin/MyIPDB.pm # Contains site-specific functions for IPDB # May override some functions from IPDB.pm, wraps others ### # SVN revision info # $Date: 2006-04-04 22:25:28 +0000 (Tue, 04 Apr 2006) $ # SVN revision $Rev: 320 $ # Last update by $Author: kdeugau $ ### # Copyright (C) 2004-2006 - Kris Deugau use IPDB 2.0 qw(:ALL); ## connectDB_My() # Wrapper for IPDB::connectDB # Takes no arguments, returns whatever IPDB::connectDB returns. sub connectDB_My { return connectDB("ipdb", "ipdb", "ipdbpwd"); } # end connectDB_My() # Keep Perl from complaining. 1;