summaryrefslogtreecommitdiff
path: root/app/Datatables.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2017-10-15 20:49:12 +0100
committerGreg Roach <fisharebest@gmail.com>2017-10-15 20:49:12 +0100
commit9afe4d60d2622cd97d24a02030b6889b486bac43 (patch)
tree44f985a1c50a7eeaabafe7e642bac610b4434714 /app/Datatables.php
parente5c5cebdf31ad2e32bdd30bcca84a7524bb63252 (diff)
downloadwebtrees-9afe4d60d2622cd97d24a02030b6889b486bac43.tar.gz
webtrees-9afe4d60d2622cd97d24a02030b6889b486bac43.tar.bz2
webtrees-9afe4d60d2622cd97d24a02030b6889b486bac43.zip
Fix #1419 - datatables/javascript error
Diffstat (limited to 'app/Datatables.php')
-rwxr-xr-xapp/Datatables.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Datatables.php b/app/Datatables.php
index b675960119..c276be2743 100755
--- a/app/Datatables.php
+++ b/app/Datatables.php
@@ -139,7 +139,7 @@ class Datatables {
return Html::attributes([
'class' => 'table table-bordered table-sm table-responsive datatables table-source',
//'data-columns' => '[{ type: "text" }, { type: "text" }, { type: "num" }, { type: "num" }, { type: "num" }, { type: "num" }, { type: "text" }, { sorting: false }]',
- 'data-columns' => '[null, null, null, null, null, null, null, null]',
+ 'data-columns' => '[null, null, null, null, null, null, null]',
'data-state-save' => 'true',
] + self::languageAttributes());
}