Skip to content

Commit

Permalink
Fixed issue #11260: Response View - Title "Actions" duplicated
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed May 25, 2016
1 parent 0393630 commit 02eb068
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions application/controllers/admin/responses.php
Original file line number Diff line number Diff line change
Expand Up @@ -409,25 +409,14 @@ public function browse($iSurveyId)
// The column model must be built dynamically, since the columns will differ from survey to survey, depending on the questions.
$column_model = array();

$column_model[] = array(
'name' => 'cb',
'index'=> 'cb',
'sortable' => false,
'width' => '100',
'resizable' => false,
'align' => 'left',
'label' => gT("Actions"),
'search' => false,
);

// The first few colums are fixed.
$column_model[] = array(
'name' => 'actions',
'index'=> 'actions',
'sorttype' => 'string',
'sortable' => false,
'width' => '100',
'resizable' => false,
'resizable' => true,
'align' => 'left',
'label' => gT("Actions"),
'search' => false,
Expand Down

0 comments on commit 02eb068

Please sign in to comment.