summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeff <jeff>2007-11-27 19:34:38 +0000
committerjeff <jeff>2007-11-27 19:34:38 +0000
commitbf69e84e359b116a859a95c0df75f5303297af41 (patch)
tree9841c3e40dda367238fd3c2e9309a4855c4abd46
parent57beff49a5827df7ee5cc2e2d3929565a2744b59 (diff)
slop correction
-rw-r--r--FS/FS/part_export/prizm.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/FS/FS/part_export/prizm.pm b/FS/FS/part_export/prizm.pm
index 765c568f6..c92b9f7af 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);
}