Bug 766: (follow-up) move copyright statement back to the top
authorGalen Charlton <gmc@esilibrary.com>
Sun, 4 May 2014 23:08:03 +0000 (23:08 +0000)
committerGalen Charlton <gmc@esilibrary.com>
Sun, 4 May 2014 23:08:03 +0000 (23:08 +0000)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Koha/Template/Plugin/AuthorisedValues.pm

index 909f409..65abac7 100644 (file)
@@ -1,5 +1,21 @@
 package Koha::Template::Plugin::AuthorisedValues;
 
+# Copyright 2012 ByWater Solutions
+# Copyright 2013-2014 BibLibre
+#
+# 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.
+#
+# 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 Template::Plugin;
@@ -8,7 +24,6 @@ use base qw( Template::Plugin );
 use Encode qw{encode decode};
 
 use C4::Koha;
-use C4::Charset;
 
 sub GetByCode {
     my ( $self, $category, $code, $opac ) = @_;
@@ -58,21 +73,4 @@ Kyle M Hall <kyle@bywatersolutions.com>
 
 Jonathan Druart <jonathan.druart@biblibre.com>
 
-=head1 COPYRIGHT
-
-Copyright ByWater Solutions 2012
-
-Copyright BibLibre 2013
-
-=head1 LICENSE
-
-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.
-
-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.
-
 =cut