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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reports-home.tt (+14 lines)
Lines 60-65 Link Here
60
        <li><a href="/cgi-bin/koha/reports/catalogue_out.pl">Items with no checkouts</a></li>
60
        <li><a href="/cgi-bin/koha/reports/catalogue_out.pl">Items with no checkouts</a></li>
61
    </ul>
61
    </ul>
62
62
63
<<<<<<< HEAD
63
    <h2>Other</h2>
64
    <h2>Other</h2>
64
    <ul>
65
    <ul>
65
        <li><a href="/cgi-bin/koha/reports/itemslost.pl">Items lost</a></li>
66
        <li><a href="/cgi-bin/koha/reports/itemslost.pl">Items lost</a></li>
Lines 69-74 Link Here
69
                <li><a href="http://schema.koha-community.org/" target="blank">Koha database schema</a></li>
70
                <li><a href="http://schema.koha-community.org/" target="blank">Koha database schema</a></li>
70
                <li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha reports library</a></li>
71
                <li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha reports library</a></li>
71
</ul></div>
72
</ul></div>
73
=======
74
	<h2>Other</h2>
75
	<ul>
76
		<li><a href="/cgi-bin/koha/reports/itemslost.pl">Items lost</a></li>
77
        <li><a href="/cgi-bin/koha/reports/orders_by_fund.pl">Orders by fund</a></li>
78
        <li><a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes">Catalog by item type</a></li>
79
		<li><a href="/cgi-bin/koha/reports/issues_avg_stats.pl">Average loan time</a></li>
80
        <li><a href="http://schema.koha-community.org/" target="blank">Koha database schema</a></li>
81
        <li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha reports library</a></li>
82
        <li><a href="/cgi-bin/koha/tools/access_files.pl">Report/log files</a></li>
83
        <!--<li><a href="/cgi-bin/koha/reports/stats.screen.pl">Till reconciliation</a></li> -->
84
	</ul></div>
85
>>>>>>> Bug 11317 - Update the link under reports
72
</div>
86
</div>
73
87
74
88
(-)a/tools/access_files.pl (-6 / +3 lines)
Lines 20-28 Link Here
20
# You should have received a copy of the GNU General Public License along
20
# You should have received a copy of the GNU General Public License along
21
# with Koha; if not, write to the Free Software Foundation, Inc.,
21
# with Koha; if not, write to the Free Software Foundation, Inc.,
22
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
23
use Modern::Perl;
24
use strict;
25
use warnings;
26
24
27
use C4::Auth;
25
use C4::Auth;
28
use CGI;
26
use CGI;
Lines 41-48 my ($template, $borrowernumber, $cookie) Link Here
41
    = get_template_and_user({template_name => "tools/access_files.tt",
39
    = get_template_and_user({template_name => "tools/access_files.tt",
42
                query => $input,
40
                query => $input,
43
                type => "intranet",
41
                type => "intranet",
44
                authnotrequired => 0,
42
            authnotrequired => 0,
45
                flagsrequired => { tools => 'access_files' },
43
            flagsrequired => { tools => 'access_files' },
46
                });
44
                });
47
45
48
unless(@directories) {
46
unless(@directories) {
49
- 

Return to bug 11317