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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt (-2 / +2 lines)
Lines 279-286 Link Here
279
    <tbody>
279
    <tbody>
280
        [% FOREACH shortcut IN shortcuts %]
280
        [% FOREACH shortcut IN shortcuts %]
281
            <tr>
281
            <tr>
282
                <td>[% shortcut.shortcut_keys %]</td>
282
                <td>[% shortcut.shortcut_keys | html %]</td>
283
                <td>[% shortcut.shortcut_desc %]</td>
283
                <td>[% shortcut.shortcut_desc | html %]</td>
284
            </tr>
284
            </tr>
285
        [% END %]
285
        [% END %]
286
        <tr>
286
        <tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/adveditorshortcuts.tt (-3 / +3 lines)
Lines 40-49 Link Here
40
                        <tbody>
40
                        <tbody>
41
                           [% FOREACH shortcut IN shortcuts %]
41
                           [% FOREACH shortcut IN shortcuts %]
42
                        <tr>
42
                        <tr>
43
                            <td><label for="shortcut_keys">[% shortcut.shortcut_desc %]</label></td>
43
                            <td><label for="shortcut_keys">[% shortcut.shortcut_desc | html %]</label></td>
44
                            <td>
44
                            <td>
45
                                <input type="hidden" name="shortcut_name" value="[% shortcut.shortcut_name %]">
45
                                <input type="hidden" name="shortcut_name" value="[% shortcut.shortcut_name | html %]">
46
                                <input type="text" name="shortcut_keys" value="[% shortcut.shortcut_keys %]">
46
                                <input type="text" name="shortcut_keys" value="[% shortcut.shortcut_keys | html %]">
47
                           </td>
47
                           </td>
48
                        </tr>
48
                        </tr>
49
                   [% END %]
49
                   [% END %]
(-)a/tools/adveditorshortcuts.pl (-2 lines)
Lines 45-51 use Koha::KeyboardShortcuts; Link Here
45
45
46
my $input            = new CGI;
46
my $input            = new CGI;
47
my $op               = $input->param('op') || 'list';
47
my $op               = $input->param('op') || 'list';
48
my @messages;
49
48
50
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
49
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
51
    {   template_name   => "tools/adveditorshortcuts.tt",
50
    {   template_name   => "tools/adveditorshortcuts.tt",
52
- 

Return to bug 21411