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

(-)a/admin/systempreferences.pl (-4 / +2 lines)
Lines 40-47 ALSO : Link Here
40
40
41
=cut
41
=cut
42
42
43
use strict;
43
use Modern::Perl;
44
use warnings;
45
44
46
use CGI;
45
use CGI;
47
use MIME::Base64;
46
use MIME::Base64;
Lines 65-71 use C4::Output; Link Here
65
#   Because some things *should* be on more than one tab.
64
#   Because some things *should* be on more than one tab.
66
#   And the tabname is the unique part (the key).
65
#   And the tabname is the unique part (the key).
67
66
68
my %tabsysprefs;
67
state %tabsysprefs;
69
68
70
# Acquisitions
69
# Acquisitions
71
$tabsysprefs{acquisitions}              = "Acquisitions";
70
$tabsysprefs{acquisitions}              = "Acquisitions";
72
- 

Return to bug 7763