]> mj.ucw.cz Git - pciids.git/commitdiff
Fix spacing between words
authorMichal Vaner <vorner@ucw.cz>
Mon, 13 Oct 2008 13:46:17 +0000 (15:46 +0200)
committerMichal Vaner <vorner@ucw.cz>
Mon, 13 Oct 2008 13:46:17 +0000 (15:46 +0200)
It was missing from some notifications

PciIds/Notifications.pm

index d52ca86bf9dc7cb4c5b227d963828efe2d9fc158..e8fa12bf4ad5ff2486ec1c11c2aa3a7872d74bb0 100644 (file)
@@ -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";
                        }
                }