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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 402-408 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
402
('reviewson','1','','If ON, enables patron reviews of bibliographic records in the OPAC','YesNo'),
402
('reviewson','1','','If ON, enables patron reviews of bibliographic records in the OPAC','YesNo'),
403
('RisExportAdditionalFields',  '', NULL ,  'Define additional RIS tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
403
('RisExportAdditionalFields',  '', NULL ,  'Define additional RIS tags to export from MARC records in YAML format as an associative array with either a marc tag/subfield combination as the value, or a list of tag/subfield combinations.',  'textarea'),
404
('RoutingListAddReserves','1','','If ON the patrons on routing lists are automatically added to holds on the issue.','YesNo'),
404
('RoutingListAddReserves','1','','If ON the patrons on routing lists are automatically added to holds on the issue.','YesNo'),
405
('RoutingListNote','To change this note edit <a href=\"/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RoutingListNote#jumped\">RoutingListNote</a> system preference.','70|10','Define a note to be shown on all routing lists','Textarea'),
405
('RoutingListNote','To change this note edit RoutingListNote system preference.','70|10','Define a note to be shown on all routing lists','Textarea'),
406
('RoutingSerials','1',NULL,'If ON, serials routing is enabled','YesNo'),
406
('RoutingSerials','1',NULL,'If ON, serials routing is enabled','YesNo'),
407
('SCOUserCSS','',NULL,'Add CSS to be included in the SCO module in an embedded <style> tag.','free'),
407
('SCOUserCSS','',NULL,'Add CSS to be included in the SCO module in an embedded <style> tag.','free'),
408
('SCOUserJS','',NULL,'Define custom javascript for inclusion in the SCO module','free'),
408
('SCOUserJS','',NULL,'Define custom javascript for inclusion in the SCO module','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routinglists.tt (-1 / +1 lines)
Lines 57-63 function confirmDelete(){ Link Here
57
        </tbody>
57
        </tbody>
58
      </table>
58
      </table>
59
      [% ELSE %]
59
      [% ELSE %]
60
        <p>There is no routing lists for this subscription.</p>
60
        <p>There are no routing lists for this subscription.</p>
61
      [% END %]
61
      [% END %]
62
62
63
    </div>
63
    </div>
(-)a/serials/routinglist.pl (-1 / +3 lines)
Lines 64-69 if($op && $op eq 'savenew') { Link Here
64
    my $subscriptionid = $input->param('subscriptionid');
64
    my $subscriptionid = $input->param('subscriptionid');
65
65
66
    $routinglistid = AddRoutingList($subscriptionid, $title);
66
    $routinglistid = AddRoutingList($subscriptionid, $title);
67
    print $input->redirect('/cgi-bin/koha/serials/routinglist.pl?routinglistid='
68
        . $routinglistid);
69
    exit;
67
} else {
70
} else {
68
    $routinglistid = $input->param('routinglistid');
71
    $routinglistid = $input->param('routinglistid');
69
}
72
}
70
- 

Return to bug 7957