Bug 10572: Add phone to message_transport_types table for new installs
[koha.git] / C4 / Scrubber.pm
index 854812e..519ee7f 100644 (file)
@@ -1,4 +1,9 @@
 package C4::Scrubber;
+
+# Copyright Liblime 2008
+# Parts copyright sys-tech.net 2011
+# Copyright PTFS Europe 2011
+#
 # This file is part of Koha.
 #
 # Koha is free software; you can redistribute it and/or modify it under the
@@ -10,9 +15,9 @@ package C4::Scrubber;
 # 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., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# 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.
 
 use strict;
 use warnings;
@@ -22,7 +27,7 @@ use HTML::Scrubber;
 use C4::Context;
 use C4::Debug;
 
-our $VERSION = 0.02;
+our $VERSION = v3.07.00.049;
 
 
 my %scrubbertypes = (
@@ -37,7 +42,7 @@ my %scrubbertypes = (
 
 
 sub new {
-    shift; # ignore our class we are wraooer
+    shift; # ignore our class we are wrapper
     my $type = (@_) ? shift : 'default';
     if ( !exists $scrubbertypes{$type} ) {
         croak "New called with unrecognized type '$type'";