From: Nick Clemens Date: Thu, 18 Apr 2019 11:54:07 +0000 (+0000) Subject: Bug 15253: (follow-up) Fix qa complaints X-Git-Url: http://git.equinoxoli.org/?p=koha-equinox.git;a=commitdiff_plain;h=9d80f9dc6b7d87bdf2e1536647a0bc8530465bd7 Bug 15253: (follow-up) Fix qa complaints Signed-off-by: Nick Clemens --- diff --git a/C4/SIP/SIPServer.pm b/C4/SIP/SIPServer.pm index 2b73b98..8daa627 100755 --- a/C4/SIP/SIPServer.pm +++ b/C4/SIP/SIPServer.pm @@ -33,6 +33,12 @@ use constant LOG_SIP => "local6"; # Local alias for the logging facility # A script with no MAIN namespace? # A module that takes command line args? +=head1 NAME + +C4::SIP::SIPServer + +=cut + # Set interface to 'sip' C4::Context->interface('sip'); @@ -432,7 +438,7 @@ sub get_timeout { sub get_SIPServer { unless($activeSIPServer) { my @cc = caller(1); - die "$cc[3]() asks for \$activeSIPServer, but he is not defined yet"; + die "$cc[3]() asks for \$activeSIPServer, but it is not defined yet"; } return $activeSIPServer; } @@ -458,7 +464,7 @@ sub _set_SIPServer { sub get_logger { unless($activeLogger) { my @cc = caller(1); - die "$cc[3]() asks for \$activeLogger, but he is not defined yet"; + die "$cc[3]() asks for \$activeLogger, but it is not defined yet"; } return $activeLogger; }