X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Faccess_user.pm;h=cb43b37e9c23a16c0497e17f8c5a0970ecdad6c2;hb=299f1b7b7b5691d70709aaacfd100d2e088ab0ff;hp=f45f17d601dca428408904564a826e7723fa5dd7;hpb=7422aa77086326ba1e6032150ce5704d1003ea6f;p=freeside.git diff --git a/FS/FS/access_user.pm b/FS/FS/access_user.pm index f45f17d60..cb43b37e9 100644 --- a/FS/FS/access_user.pm +++ b/FS/FS/access_user.pm @@ -6,10 +6,12 @@ use FS::UID; use FS::Conf; use FS::Record qw( qsearch qsearchs dbh ); use FS::m2m_Common; +use FS::option_Common; use FS::access_usergroup; use FS::agent; -@ISA = qw( FS::m2m_Common FS::Record ); +@ISA = qw( FS::m2m_Common FS::option_Common FS::Record ); +#@ISA = qw( FS::m2m_Common FS::option_Common ); #kludge htpasswd for now (i hope this bootstraps okay) FS::UID->install_callback( sub { @@ -74,6 +76,10 @@ points to. You can ask the object for a copy with the I method. sub table { 'access_user'; } +sub _option_table { 'access_user_pref'; } +sub _option_namecol { 'prefname'; } +sub _option_valuecol { 'prefvalue'; } + =item insert Adds this record to the database. If there is an error, returns the error, @@ -177,7 +183,11 @@ returns the error, otherwise returns false. =cut sub replace { - my($new, $old) = ( shift, shift ); + my $new = shift; + + my $old = ( ref($_[0]) eq ref($new) ) + ? shift + : $new->replace_old; local $SIG{HUP} = 'IGNORE'; local $SIG{INT} = 'IGNORE'; @@ -190,13 +200,15 @@ sub replace { local $FS::UID::AutoCommit = 0; my $dbh = dbh; - my $error = $new->htpasswd_kludge(); - if ( $error ) { - $dbh->rollback or die $dbh->errstr if $oldAutoCommit; - return $error; + if ( $new->_password ne $old->_password ) { + my $error = $new->htpasswd_kludge(); + if ( $error ) { + $dbh->rollback or die $dbh->errstr if $oldAutoCommit; + return $error; + } } - $error = $new->SUPER::replace($old, @_); + my $error = $new->SUPER::replace($old, @_); if ( $error ) { $dbh->rollback or die $dbh->errstr if $oldAutoCommit;