Bug 17600: Standardize our EXPORT_OK
[srvgit] / Koha / Patron / Message.pm
index 8383780..fa4473d 100644 (file)
@@ -2,25 +2,24 @@ package Koha::Patron::Message;
 
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 3 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along
-# with Koha; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use Modern::Perl;
 
-use Carp;
 
 use C4::Context;
-use C4::Log qw( logaction );
+use C4::Log;
 
 use Koha::Database;
 
@@ -49,9 +48,9 @@ sub store {
               and $self->message_type
               and $self->branchcode;
 
-    unless (defined $self->manager_id) {
+    unless ( defined $self->manager_id ) {
         my $userenv = C4::Context->userenv;
-        $self->manager_id( $userenv ? $userenv->{number} : undef);
+        $self->manager_id( $userenv ? $userenv->{number} : undef );
     }
 
     C4::Log::logaction( "MEMBERS", "ADDCIRCMESSAGE", $self->borrowernumber, $self->message )