From a65515c2aa34a62e889ddd6df1799bed4d4e8966 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Wed, 5 Jun 2013 11:04:15 -0400
Subject: [PATCH] Bug 8956 - Split serials enumeration data into separate fields - Part 9 - Remove print from database update

---
 installer/data/mysql/updatedatabase.pl |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl
index a47050e..8cc00ea 100755
--- a/installer/data/mysql/updatedatabase.pl
+++ b/installer/data/mysql/updatedatabase.pl
@@ -7010,7 +7010,6 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
    while ( my $subscription = $sth->fetchrow_hashref() ) {
        ## parse out the labels and save them
        my $nm = $subscription->{'numberingmethod'};
-       print "NUMBERING METHOD: '$nm'\n";
        my @labels = split(/\{[XYZ]\}[, ]?/, $nm);
        @labels = map( $trim->( $_ ), @labels );
        my ( $x_label, $y_label, $z_label ) = @labels;
-- 
1.7.2.5