Bug 11559: (QA followup) detect and warn about corruption caused by MARC-8
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / columns_settings.inc
index 9dd454c..ec86690 100644 (file)
@@ -10,7 +10,7 @@ function KohaTable(selector, dt_parameters, columns_settings) {
     var excluded_ids = [];
     $(columns_settings).each( function() {
         var named_id = $( 'thead th[data-colname="' + this.columnname + '"]', selector ).index( 'th' );
-        var used_id = this.columnname ? named_id : id;
+        var used_id = dt_parameters.bKohaColumnsUseNames ? named_id : id;
         if ( used_id == -1 ) return;
 
         if ( this['is_hidden'] == "1" ) {