Skip to content

Commit

Permalink
[FIX] Fixed a bug where udf fields were not displayed.
Browse files Browse the repository at this point in the history
  • Loading branch information
otruffer committed Dec 11, 2015
1 parent ad6c7cd commit d1e6fcb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions classes/UDFCheck/class.ilUDFCheckTableGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,12 @@ public function initFilter() {
* @return array
*/
public function getSelectableColumns() {
$cols['field_name'] = array(
$cols['udf_definition_field_name'] = array(
'txt' => $this->pl->txt('check_name'),
'default' => true,
'width' => '40%',
'sort_field' => 'field_name'
'sort_field' => 'udf_definition_field_name'
);
// $cols['operator'] = array( 'txt' => $this->pl->txt('check_operator'), 'default' => true, 'width' => '20px', 'sort_field' => 'operator' );
$cols['check_value'] = array( 'txt' => $this->pl->txt('check_value'), 'default' => true, 'width' => 'auto', 'sort_field' => 'check_value' );
$cols['actions'] = array( 'txt' => $this->pl->txt('check_actions'), 'default' => true, 'width' => '150px', );

Expand Down

0 comments on commit d1e6fcb

Please sign in to comment.