From 5d04625826855fbc5682068035ea52bba49252bc Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 29 Sep 2013 13:11:14 +0200 Subject: [PATCH] Bug 9739: Follow-up - Improve help text a bit Changes only strings in the script: the help text and the success message for updated serial issues. Thx to Jared for proof reading! --- misc/cronjobs/serialsUpdate.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/cronjobs/serialsUpdate.pl b/misc/cronjobs/serialsUpdate.pl index 2b3c98d..07d418a 100755 --- a/misc/cronjobs/serialsUpdate.pl +++ b/misc/cronjobs/serialsUpdate.pl @@ -39,7 +39,7 @@ use Pod::Usage; =head1 NAME -serialsUpdate.pl - change status of serials that are late +serialsUpdate.pl - change status of serial issues that are late =head1 SYNOPSIS @@ -49,10 +49,10 @@ serialsUpdate.pl [ -h | -m ][ -v ] -c ][ --note "you are late" ][ --no-note ] --h --help -? Brief help message --man Full documentation --verbose -v Verbose mode - -c Confirm : without this option, the script will report the concerned serials - without modifying database - --note Note set to concerned serials, by default "Automatically set to late" - --no-note Do not set a note one concerned serials + -c Confirm: without this option, the script will report on affected serial + issues without modifying database + --note Note set on affected serial issues, by default "Automatically set to late" + --no-note Do not set a note on affected serial issues =cut @@ -129,7 +129,7 @@ while ( my $issue = $sth->fetchrow_hashref ) { $issue->{planneddate}, $issue->{publisheddate}, 3, $note ); $verbose - and print "Serial id=" . $issue->{serialid} . " update\n"; + and print "Serial issue with id=" . $issue->{serialid} . " updated\n"; } } else { -- 1.7.9.5