From: Michal Vaner Date: Mon, 13 Oct 2008 13:46:17 +0000 (+0200) Subject: Fix spacing between words X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=e546157f70eb5800d22b258d8f686a68d9f12ca7;p=pciids.git Fix spacing between words It was missing from some notifications --- diff --git a/PciIds/Notifications.pm b/PciIds/Notifications.pm index d52ca86..e8fa12b 100644 --- a/PciIds/Notifications.pm +++ b/PciIds/Notifications.pm @@ -77,13 +77,13 @@ sub sendOut( $$ ) { $note .= " Time: $time\n"; } elsif( $reason == 2 ) { if( $name ne '' ) { - $note = "Item name approved.\n Id:".$addr->pretty()."\n"; + $note = "Item name approved.\n Id: ".$addr->pretty()."\n"; $note .= " Name: $newname\n"; $note .= " Description: $newdesc\n" if( defined $newdesc && ( $newdesc ne '' ) ); $note .= " Comment text: $text\n" if( defined $text && ( $text ne '' ) ); $note .= " Address: http://".$config{'hostname'}."/read/".$addr->get()."\n"; } else { - $note = "Item deletion approved.\n Id:".$addr->pretty()."\n"; + $note = "Item deletion approved.\n Id: ".$addr->pretty()."\n"; $note .= " Address: http://".$config{'hostname'}."/read/".$addr->get()."\n"; } }