diff options
| author | Greg Roach <fisharebest@gmail.com> | 2017-10-13 20:09:39 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2017-10-13 20:09:52 +0100 |
| commit | ff2ac2f70f61799e6fd7729adc3fe4f988668fc8 (patch) | |
| tree | 6685f7e35225e1723eb9e2ce7a5726c08be8507a /app/Datatables.php | |
| parent | 9def56286d3e7b306ee321bf16ce5e3dc54c66c4 (diff) | |
| download | webtrees-ff2ac2f70f61799e6fd7729adc3fe4f988668fc8.tar.gz webtrees-ff2ac2f70f61799e6fd7729adc3fe4f988668fc8.tar.bz2 webtrees-ff2ac2f70f61799e6fd7729adc3fe4f988668fc8.zip | |
Fix: #1403 - note list not displayed due to javascript error
Diffstat (limited to 'app/Datatables.php')
| -rwxr-xr-x | app/Datatables.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Datatables.php b/app/Datatables.php index 13e0d687ec..b675960119 100755 --- a/app/Datatables.php +++ b/app/Datatables.php @@ -111,7 +111,7 @@ class Datatables { return Html::attributes([ 'class' => 'table table-bordered table-sm table-responsive datatables table-note', //'data-columns' => '[{ type: "text" }, { type: "text" }, { type: "num" }, { type: "num" }, { type: "num" }, { type: "text" }, { sorting: false }]', - 'data-columns' => '[null, null, null, null, null, null, null]', + 'data-columns' => '[null, null, null, null, null, null]', 'data-state-save' => 'true', ] + self::defaultAttributes() + self::languageAttributes()); } |
