summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorjonathan <jonathan@freeside.biz>2015-05-21 22:57:03 +0000
committerjonathan <jonathan@freeside.biz>2015-05-21 22:57:03 +0000
commit37047d680db893694234b8d470a231d84597a25a (patch)
treead69d85b3780f12ded781d4a156f1d59636c6c89 /FS
parentccdadadf8126cf29438328c8b75e313b6d76897d (diff)
RT#34289: Flag service fields as mandatory [error msg tweak]
Diffstat (limited to 'FS')
-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 c87acb9c4..355c38342 100644
--- a/FS/FS/svc_Common.pm
+++ b/FS/FS/svc_Common.pm
@@ -189,7 +189,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"
}
}
}