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

(-)a/admin/preferences.pl (-1 / +2 lines)
Lines 266-272 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
266
$lang = $template->param( 'lang' );
266
$lang = $template->param( 'lang' );
267
my $op = $input->param( 'op' ) || '';
267
my $op = $input->param( 'op' ) || '';
268
my $tab = $input->param( 'tab' );
268
my $tab = $input->param( 'tab' );
269
$tab ||= 'local-use';
269
$tab ||= 'acquisitions'; # Ideally this should be "local-use" but preferences.pl
270
                         # does not presently support local use preferences
270
271
271
my $highlighted;
272
my $highlighted;
272
273
(-)a/admin/systempreferences.pl (-1 / +1 lines)
Lines 801-807 if ( $op eq 'add_form' ) { Link Here
801
        $row_data->{delete} = "$script_name?op=delete_confirm&searchfield=" . $results->[$i]{'variable'};
801
        $row_data->{delete} = "$script_name?op=delete_confirm&searchfield=" . $results->[$i]{'variable'};
802
        push( @loop_data, $row_data );
802
        push( @loop_data, $row_data );
803
    }
803
    }
804
    $tab = ( $tab ? $tab : "Local Use" );
804
    $tab = ( $tab ? $tab : "local-use" );
805
    $template->param( loop => \@loop_data, $tab => 1 );
805
    $template->param( loop => \@loop_data, $tab => 1 );
806
    if ( $offset > 0 ) {
806
    if ( $offset > 0 ) {
807
        my $prevpage = $offset - $pagesize;
807
        my $prevpage = $offset - $pagesize;
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/sysprefs-menu.inc (-20 lines)
Lines 1-20 Link Here
1
<div id="menu">
2
<ul>
3
<!-- TMPL_IF NAME="Acquisitions" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Acquisitions" href="/cgi-bin/koha/admin/preferences.pl?tab=acquisitions">Acquisitions</a></li>
4
<!-- TMPL_IF NAME="Admin" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Administration" href="/cgi-bin/koha/admin/preferences.pl?tab=admin">Administration</a></li>
5
<!-- TMPL_IF NAME="Authorities" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Authority Control" href="/cgi-bin/koha/admin/preferences.pl?tab=authorities">Authorities</a></li>
6
<!-- TMPL_IF NAME="Cataloging" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Cataloging" href="/cgi-bin/koha/admin/preferences.pl?tab=cataloging">Cataloging</a></li>
7
<!-- TMPL_IF NAME="Circulation" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Circulation" href="/cgi-bin/koha/admin/preferences.pl?tab=circulation">Circulation</a></li>
8
<!-- TMPL_IF NAME="Creators" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Creators" href="/cgi-bin/koha/admin/preferences.pl?tab=creators">Creators</a></li>
9
<!-- TMPL_IF NAME="EnhancedContent" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Enhanced content settings" href="/cgi-bin/koha/admin/preferences.pl?tab=enhanced-content">Enhanced Content</a></li>
10
<!-- TMPL_IF NAME="I18N/L10N" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Internationalization and Localization" href="/cgi-bin/koha/admin/preferences.pl?tab=i18n-l10n">I18N/L10N</a></li>
11
<!-- TMPL_IF NAME="" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a href="/cgi-bin/koha/admin/systempreferences.pl">Local Use</a></li>
12
<!-- TMPL_IF NAME="Logs" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Transaction Logs" href="/cgi-bin/koha/admin/preferences.pl?tab=logs">Logs</a></li>
13
<!-- TMPL_IF NAME="OPAC" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Online Public Access Catalog" href="/cgi-bin/koha/admin/preferences.pl?tab=opac">OPAC</a></li>
14
<!-- TMPL_IF NAME="Patrons" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Patrons" href="/cgi-bin/koha/admin/preferences.pl?tab=patrons">Patrons</a></li>
15
<!-- TMPL_IF NAME="Searching" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Searching" href="/cgi-bin/koha/admin/preferences.pl?tab=searching">Searching</a></li>
16
<!-- TMPL_IF NAME="Serials" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Serials" href="/cgi-bin/koha/admin/preferences.pl?tab=serials">Serials</a></li>
17
<!-- TMPL_IF NAME="StaffClient" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Staff Client" href="/cgi-bin/koha/admin/preferences.pl?tab=staff-client">Staff Client</a></li>
18
<!-- TMPL_IF NAME="OAI-PMH" --><li class="active"><!-- TMPL_ELSE --><li><!-- /TMPL_IF --><a title="Web Services" href="/cgi-bin/koha/admin/preferences.pl?tab=web-services">Web Services</a></li>
19
</ul>
20
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tmpl (-2 / +1 lines)
Lines 347-353 Link Here
347
</div>
347
</div>
348
</div>
348
</div>
349
<div class="yui-b">
349
<div class="yui-b">
350
<!-- TMPL_INCLUDE NAME="sysprefs-menu.inc" -->
350
<!-- TMPL_INCLUDE NAME="prefs-menu.inc" -->
351
</div>
351
</div>
352
</div>
352
</div>
353
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
353
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
354
- 

Return to bug 5261