summaryrefslogtreecommitdiff
path: root/eg/export_template.pm
diff options
context:
space:
mode:
authorivan <ivan>2002-05-16 14:27:58 +0000
committerivan <ivan>2002-05-16 14:27:58 +0000
commitda311364707d64a2188cb959b3779178563d0ac8 (patch)
tree5e6af279289db8d71caf9865a4691a0a423a7760 /eg/export_template.pm
parent6c22d1f804ed99ecae591af6483a326e1c825560 (diff)
add (stub) bsdshell and textradius exports
Diffstat (limited to 'eg/export_template.pm')
-rw-r--r--eg/export_template.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/eg/export_template.pm b/eg/export_template.pm
index 1d441bd..00942fd 100644
--- a/eg/export_template.pm
+++ b/eg/export_template.pm
@@ -9,7 +9,7 @@ sub rebless { shift; }
sub _export_insert {
my($self, $svc_something) = (shift, shift);
- $err_or_queue = $self->myexport_queue( $svc_acct->svcnum, 'insert',
+ $err_or_queue = $self->myexport_queue( $svc_something->svcnum, 'insert',
$svc_something->username, $svc_something->_password );
ref($err_or_queue) ? '' : $err_or_queue;
}
@@ -26,7 +26,7 @@ sub _export_replace {
sub _export_delete {
my( $self, $svc_something ) = (shift, shift);
- $err_or_queue = $self->myexport_queue( $svc_acct->svcnum,
+ $err_or_queue = $self->myexport_queue( $svc_something->svcnum,
'delete', $svc_something->username );
ref($err_or_queue) ? '' : $err_or_queue;
}