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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (-1 / +1 lines)
Lines 161-167 function KohaTable(id_selector, dt_parameters, table_settings, add_filters) { Link Here
161
        }
161
        }
162
    );
162
    );
163
163
164
    if ( CAN_user_parameters_manage_column_config ) {
164
    if ( table_settings && CAN_user_parameters_manage_column_config ) {
165
        dt_parameters[ "buttons" ].push(
165
        dt_parameters[ "buttons" ].push(
166
            {
166
            {
167
                className: "dt_button_configure_table",
167
                className: "dt_button_configure_table",
(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-2 / +1 lines)
Lines 813-819 jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { Link Here
813
            }
813
            }
814
        );
814
        );
815
815
816
        if ( CAN_user_parameters_manage_column_config ) {
816
        if ( table_settings && CAN_user_parameters_manage_column_config ) {
817
            settings[ "buttons" ].push(
817
            settings[ "buttons" ].push(
818
                {
818
                {
819
                    className: "dt_button_configure_table",
819
                    className: "dt_button_configure_table",
820
- 

Return to bug 31435