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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt (-2 / +5 lines)
Lines 243-249 Link Here
243
                    "targets": [0,1,2,3,4],
243
                    "targets": [0,1,2,3,4],
244
                    "render": function (data, type, row, meta) {
244
                    "render": function (data, type, row, meta) {
245
                        if ( type == 'display' ) {
245
                        if ( type == 'display' ) {
246
                            return data.escapeHtml();
246
                            if ( data != null ) {
247
                                return data.escapeHtml();
248
                            } else {
249
                                return "";
250
                            }
247
                        }
251
                        }
248
                        return data;
252
                        return data;
249
                    }
253
                    }
250
- 

Return to bug 36196