summaryrefslogtreecommitdiff
path: root/FS/FS/svc_Common.pm
diff options
context:
space:
mode:
authorjonathan <jonathan@freeside.biz>2015-05-21 22:57:03 +0000
committerJonathan Prykop <jonathan@freeside.biz>2015-05-21 18:01:05 -0500
commitf498bc8ce9377bfac97dbf3edbf1934318b105c3 (patch)
treeedd262cf4438f7c209c92c2b514220b58d35a96a /FS/FS/svc_Common.pm
parentfb7f3203c7d839ae3964d5e2cac71892422a10d1 (diff)
RT#34289: Flag service fields as mandatory [error msg tweak]
Diffstat (limited to 'FS/FS/svc_Common.pm')
-rw-r--r--FS/FS/svc_Common.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_Common.pm b/FS/FS/svc_Common.pm
index 9853d5b74..d70209aef 100644
--- a/FS/FS/svc_Common.pm
+++ b/FS/FS/svc_Common.pm
@@ -192,7 +192,7 @@ sub check {
foreach my $field (keys %$required) {
unless (length($self->get($field)) > 0) {
my $name = $labels->{$field} || $field;
- return "Field $name is required\n"
+ return "$name is required\n"
}
}
}