View | Details | Raw Unified | Return to bug 7567
Collapse All | Expand All

(-)a/tools/koha-news.pl (-14 / +13 lines)
Lines 1-28 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
2
3
# This file is part of Koha.
4
#
3
# Script to manage the opac news.
5
# Script to manage the opac news.
4
# written 11/04
6
# written 11/04
5
# Casta�eda, Carlos Sebastian - seba3c@yahoo.com.ar - Physics Library UNLP Argentina
7
# Casta�eda, Carlos Sebastian - seba3c@yahoo.com.ar - Physics Library UNLP Argentina
6
# Modified to include news to KOHA intranet - tgarip@neu.edu.tr NEU library -Cyprus
8
# Modified to include news to KOHA intranet - tgarip@neu.edu.tr NEU library -Cyprus
7
# Copyright 2000-2002 Katipo Communications
9
# Copyright 2000-2002 Katipo Communications
8
#
10
#
9
# This file is part of Koha.
11
# Koha is free software; you can redistribute it and/or modify it
10
#
12
# under the terms of the GNU General Public License as published by
11
# Koha is free software; you can redistribute it and/or modify it under the
13
# the Free Software Foundation; either version 3 of the License, or
12
# terms of the GNU General Public License as published by the Free Software
14
# (at your option) any later version.
13
# Foundation; either version 2 of the License, or (at your option) any later
14
# version.
15
#
15
#
16
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16
# Koha is distributed in the hope that it will be useful, but
17
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17
# WITHOUT ANY WARRANTY; without even the implied warranty of
18
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
# GNU General Public License for more details.
19
#
20
#
20
# You should have received a copy of the GNU General Public License along
21
# You should have received a copy of the GNU General Public License
21
# with Koha; if not, write to the Free Software Foundation, Inc.,
22
# along with Koha; if not, see <http://www.gnu.org/licenses>.
22
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
23
24
use strict;
24
use strict;
25
#use warnings; FIXME - Bug 2505
25
# use warnings; FIXME - Bug 2505
26
use CGI;
26
use CGI;
27
use C4::Auth;
27
use C4::Auth;
28
use C4::Koha;
28
use C4::Koha;
29
- 

Return to bug 7567