From: Nick Clemens Date: Thu, 18 Apr 2019 17:57:41 +0000 (+0000) Subject: Revert "Bug 15253: (follow-up) Fix qa complaints" X-Git-Url: http://git.equinoxoli.org/?p=koha-equinox.git;a=commitdiff_plain;h=97faa17d710ed9e26f23e53a6dfbbd3ba79a3589 Revert "Bug 15253: (follow-up) Fix qa complaints" This reverts commit 9d80f9dc6b7d87bdf2e1536647a0bc8530465bd7. Signed-off-by: Nick Clemens --- diff --git a/C4/SIP/SIPServer.pm b/C4/SIP/SIPServer.pm index 8daa627..2b73b98 100755 --- a/C4/SIP/SIPServer.pm +++ b/C4/SIP/SIPServer.pm @@ -33,12 +33,6 @@ 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'); @@ -438,7 +432,7 @@ sub get_timeout { sub get_SIPServer { unless($activeSIPServer) { my @cc = caller(1); - die "$cc[3]() asks for \$activeSIPServer, but it is not defined yet"; + die "$cc[3]() asks for \$activeSIPServer, but he is not defined yet"; } return $activeSIPServer; } @@ -464,7 +458,7 @@ sub _set_SIPServer { sub get_logger { unless($activeLogger) { my @cc = caller(1); - die "$cc[3]() asks for \$activeLogger, but it is not defined yet"; + die "$cc[3]() asks for \$activeLogger, but he is not defined yet"; } return $activeLogger; }