diff options
author | Michael Tänzer <neo@nhng.de> | 2012-05-23 01:50:18 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2012-05-23 01:50:18 +0200 |
commit | 52041cf90d4306d45767ffc5e5a39fce0b475cf0 (patch) | |
tree | a06f3735f5dee49f5bd18c722d0bd98b8e505a7a /scripts/cron/permissionreview.php | |
parent | 619093aa4e83697d335a17decedc5f977cbd2f81 (diff) | |
download | cacert-devel-52041cf90d4306d45767ffc5e5a39fce0b475cf0.tar.gz cacert-devel-52041cf90d4306d45767ffc5e5a39fce0b475cf0.tar.xz cacert-devel-52041cf90d4306d45767ffc5e5a39fce0b475cf0.zip |
bug 1003: Formatting of the messages
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'scripts/cron/permissionreview.php')
-rwxr-xr-x | scripts/cron/permissionreview.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/cron/permissionreview.php b/scripts/cron/permissionreview.php index c35787d..0f2fc2e 100755 --- a/scripts/cron/permissionreview.php +++ b/scripts/cron/permissionreview.php @@ -148,10 +148,12 @@ EOF; foreach ($flags as $flag => $flag_properties) { if ($flag_properties['support']) { - $message .= "List of $flag_properties[name]s:\n"; + $message .= "List of $flag_properties[name]s:\n\n"; foreach ($adminlist[$flag] as $colleague) { $message .= "$colleague[fname] $colleague[lname] $colleague[email]\n"; } + + $message .= "\n\n"; } } @@ -200,6 +202,7 @@ EOF; foreach ($adminlist[$flag] as $colleague) { $message .= "$colleague[fname] $colleague[lname] $colleague[email]\n"; } + $message .= "\n\n"; } } |