[ic] UserDB functions

Grigoriy G. Vovk Grigoriy.Vovk@linustech.com.cy
Thu, 19 Apr 2001 18:56:21 +0300 (EEST)


I use existing database, and information about clients (which can be
person or company) are in the different tables.
I want to override new_account function.
How it should be looking, like this -

GlobalSub <<EOF
sub new_account {
	package Vend::Module;
	use MyModule;
	sub new_account {
		&MyModule::new_account($Values->{name},
		$Values->{password});
	}
}
EOF
where MyModule is a name of a file without .pm

Is it ok?

my best regards,
-----------------------------
Grigoriy G. Vovk