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

(-)a/about.pl (+7 lines)
Lines 906-909 if ( open( my $file, "<:encoding(UTF-8)", "$docdir" . "/history.txt" ) ) { Link Here
906
}
906
}
907
}
907
}
908
908
909
if ( $tab eq 'database' ) {
910
    use HTML::TextToHTML;
911
    my $t = `./misc/maintenance/audit_database.pl`;
912
    my $conv = new HTML::TextToHTML();
913
    $template->param( database_audit => $conv->process_chunk($t) );
914
}
915
909
output_html_with_http_headers $query, $cookie, $template->output;
916
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1 / +5 lines)
Lines 41-46 Link Here
41
                    [% WRAPPER tab_item_link link = "translations" bt_active = tab == "translations" %] <span>Translations</span> [% END %]
41
                    [% WRAPPER tab_item_link link = "translations" bt_active = tab == "translations" %] <span>Translations</span> [% END %]
42
                    [% WRAPPER tab_item_link link = "history" bt_active = tab == "history" %] <span>Timeline</span> [% END %]
42
                    [% WRAPPER tab_item_link link = "history" bt_active = tab == "history" %] <span>Timeline</span> [% END %]
43
                    [% WRAPPER tab_item_link link = "dedications" bt_active = tab == "dedications" %] <span>Dedications</span> [% END %]
43
                    [% WRAPPER tab_item_link link = "dedications" bt_active = tab == "dedications" %] <span>Dedications</span> [% END %]
44
                    [% WRAPPER tab_item_link link = "database" bt_active = tab == "database" %] <span>Database audit</span> [% END %]
44
                [% END %]
45
                [% END %]
45
46
46
                [% WRAPPER tab_panels %]
47
                [% WRAPPER tab_panels %]
Lines 1317-1322 Link Here
1317
                            mother of Simon and Jeremy, and grandmother of Ben, Toby, Anna, Charlotte and Billy.
1318
                            mother of Simon and Jeremy, and grandmother of Ben, Toby, Anna, Charlotte and Billy.
1318
                        </p>
1319
                        </p>
1319
                    [% END # tab=dedications %]
1320
                    [% END # tab=dedications %]
1321
                    [% IF tab == 'database' %]
1322
                        <h2>Database audit</h2>
1323
                        [% database_audit %]
1324
                    [% END # tab=database %]
1320
                [% END %]
1325
                [% END %]
1321
            [% END # /WRAPPER abouttabs %]
1326
            [% END # /WRAPPER abouttabs %]
1322
        </div> <!-- /.col-md-12 -->
1327
        </div> <!-- /.col-md-12 -->
1323
- 

Return to bug 36039