Bug 7684: (follow-up) fix UTF-8 encoding problems in CSV export
[koha.git] / C4 / Reports.pm
index d0bbe70..104858e 100644 (file)
@@ -13,22 +13,21 @@ package C4::Reports;
 # 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; FIXME - Bug 2505
 use CGI;
 
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use C4::Context;
 use C4::Debug;
-# use Smart::Comments;
-# use Data::Dumper;
 
 BEGIN {
     # set the version for version checking
-    $VERSION = 0.13;
+    $VERSION = 3.07.00.049;
     require Exporter;
     @ISA = qw(Exporter);
     @EXPORT = qw(
@@ -37,7 +36,7 @@ BEGIN {
 }
 
 =head1 NAME
-   
+
 C4::Reports - Module for generating reports 
 
 =head1 DESCRIPTION
@@ -48,11 +47,7 @@ This module contains functions common to reports.
 
 =head2 GetDelimiterChoices
 
-=over 4
-
-my $delims = GetDelimiterChoices;
-
-=back
+  my $delims = GetDelimiterChoices;
 
 This will return a list of all the available delimiters.