summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2003-11-20 12:48:12 +0000
committerivan <ivan>2003-11-20 12:48:12 +0000
commit6197896ef435bb3e44e0e3d37e890ece3c0c2199 (patch)
tree7a75c31a29f941e8885183d9ac0e9aff7529d94f
parentfa634c8195db53b910dd349773a4e034382261b8 (diff)
don't error out when not actually changing domain
-rw-r--r--FS/FS/part_export/communigate_pro.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_export/communigate_pro.pm b/FS/FS/part_export/communigate_pro.pm
index aa038f08e..557aad91d 100644
--- a/FS/FS/part_export/communigate_pro.pm
+++ b/FS/FS/part_export/communigate_pro.pm
@@ -31,10 +31,10 @@ sub _export_insert {
sub _export_replace {
my( $self, $new, $old ) = (shift, shift, shift);
- return "can't (yet) change domain with CommuniGate Pro"
- if $old->domain ne $new->domain;
return "can't (yet) change username with CommuniGate Pro"
if $old->username ne $new->username;
+ return "can't (yet) change domain with CommuniGate Pro"
+ if $self->export_username($old) ne $self->export_username($new);
return "can't (yet) change GECOS with CommuniGate Pro"
if $old->finger ne $new->finger;
return "can't (yet) change quota with CommuniGate Pro"