X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=eg%2Fexport_template.pm;h=f2a5a19f7c484fc1888aa3e2c787fa48e910a426;hp=11e1c3b1426e741dd4456fd7892ba3c181aa6f39;hb=9bf26ed4b065b12826fc2980ff277a2f3be25c1d;hpb=38616a70ddf2b60925af53b605a4ea40a1c51e09 diff --git a/eg/export_template.pm b/eg/export_template.pm index 11e1c3b14..f2a5a19f7 100644 --- a/eg/export_template.pm +++ b/eg/export_template.pm @@ -10,7 +10,7 @@ sub rebless { shift; } sub _export_insert { my($self, $svc_something) = (shift, shift); $self->myexport_queue( $svc_acct->svcnum, 'insert', - $svc_something->username, $svc_something->password ); + $svc_something->username, $svc_something->_password ); } sub _export_replace { @@ -19,7 +19,7 @@ sub _export_replace { # if $old->username ne $new->username; #return '' unless $old->_password ne $new->_password; $self->myexport_queue( $new->svcnum, - 'replace', $new->username, $new->password ); + 'replace', $new->username, $new->_password ); } sub _export_delete {