From: jeff Date: Tue, 27 Nov 2007 19:34:54 +0000 (+0000) Subject: slop correction X-Git-Tag: TRIXBOX_2_6~229 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=c9e9a041acb5066cfd3c67b94a695df8efc03844 slop correction --- diff --git a/FS/FS/part_export/prizm.pm b/FS/FS/part_export/prizm.pm index 438354263..a8ea02a09 100644 --- a/FS/FS/part_export/prizm.pm +++ b/FS/FS/part_export/prizm.pm @@ -147,7 +147,7 @@ sub _export_insert { sprintf("%032X", $svc->authkey), $svc->cust_svc->cust_pkg->part_pkg->pkg, $svc->vlan_profile, - $self->option('ems') == 1, + ($self->option('ems') ? 1 : 0 ), ); return $err_or_som unless ref($err_or_som); @@ -201,7 +201,7 @@ sub _export_insert { 'activateNetworkElements', [ $element ], 1, - $self->option('ems') == 1, + ( $self->option('ems') ? 1 : 0 ), ); return $err_or_som @@ -314,13 +314,13 @@ sub _export_replace { sub _export_suspend { my( $self, $svc ) = ( shift, shift ); - my $ems = $self->option('ems') == 1; + my $ems = $self->option('ems') ? 1 : 0; $self->queue_statuschange('suspendNetworkElements', [], $svc, 1, $ems); } sub _export_unsuspend { my( $self, $svc ) = ( shift, shift ); - my $ems = $self->option('ems') == 1; + my $ems = $self->option('ems') ? 1 : 0; $self->queue_statuschange('activateNetworkElements', [], $svc, 1, $ems); }