Unable to toggle "Only show the following statuses"
alfredo-ardito opened this issue · 2 comments
alfredo-ardito commented
photoninger commented
Here is a fix for this issue:
--- authres_status.php.orig 2020-01-15 17:34:54.089039813 +0100
+++ authres_status.php 2020-01-15 17:34:26.708973143 +0100
@@ -141,7 +141,7 @@
$args['blocks']['authresstatus']['name'] = $this->gettext('title_include_status');
$args['blocks']['authresstatus']['options']['enable' . $status]['title'] = $this->gettext('label_include_status' . $status);
- $input = new html_checkbox(array('name' => '_show_statuses[]', 'id' => 'enable_authres_status_column', 'value' => $status));
+ $input = new html_checkbox(array('name' => '_show_statuses[]', 'id' => 'enable_authres_status_' . $status, 'value' => $status));
$args['blocks']['authresstatus']['options']['enable' . $status]['content'] = $input->show(($show_statuses & $status));
}
}
I don't understand why it is only broken in elastic, but who cares...
pimlie commented
Resolved by linked PR