allow timeout to be specified in days
[koha_fer] / C4 / Bookseller.pm
old mode 100755 (executable)
new mode 100644 (file)
index f970774..72f7896
@@ -17,14 +17,13 @@ package C4::Bookseller;
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id$
 
 use strict;
 
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = 3.00;
 
 @ISA    = qw(Exporter);
 @EXPORT = qw(
@@ -84,7 +83,6 @@ sub GetBookSeller {
     while ( my $data = $sth->fetchrow_hashref ) {
         $sth2->execute($data->{id});
         ($data->{basketcount}) = $sth2->fetchrow();
-        warn "COUNT : ".$data->{basketcount};
         push( @results, $data );
     }
     $sth->finish;