[Koha-cvs] koha/C4 Output.pm

Antoine Farnault antoine at koha-fr.org
Wed Jun 20 11:45:09 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Antoine Farnault <toins>	07/06/20 09:45:09

Modified files:
	C4             : Output.pm 

Log message:
	missing comma :-/

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Output.pm?cvsroot=koha&r1=1.64&r2=1.65

Patches:
Index: Output.pm
===================================================================
RCS file: /sources/koha/koha/C4/Output.pm,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -b -r1.64 -r1.65
--- Output.pm	19 Jun 2007 15:14:08 -0000	1.64
+++ Output.pm	20 Jun 2007 09:45:09 -0000	1.65
@@ -21,7 +21,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: Output.pm,v 1.64 2007/06/19 15:14:08 toins Exp $
+# $Id: Output.pm,v 1.65 2007/06/20 09:45:09 toins Exp $
 
 # NOTE: I'm pretty sure this module is deprecated in favor of
 # templates.
@@ -35,7 +35,7 @@
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.64 $' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.65 $' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
 
 =head1 NAME
 
@@ -326,7 +326,7 @@
 sub output_html_with_http_headers ($$$) {
     my($query, $cookie, $html) = @_;
     print $query->header(
-        -type    => 'text/html'
+        -type    => 'text/html',
         -charset => 'UTF-8',
         -cookie  => $cookie,
     ), $html;





More information about the Koha-cvs mailing list