Skip to content

Commit

Permalink
Fixed issue #14240: When deleting token attributes the drop down is m…
Browse files Browse the repository at this point in the history
…issing the attribute names
  • Loading branch information
dominikvitt committed Nov 12, 2018
1 parent 57a35d5 commit 758748d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/admin/token/managetokenattributes.php
Expand Up @@ -149,7 +149,7 @@
<p>
<label for="deleteattribute"><?php eT('Delete this attribute:'); ?></label>
<div class=''>
<?php echo CHtml::dropDownList('deleteattribute',"",CHtml::listData($tokenfieldlist,'id','descrition'),array('empty' => gT('(None)','unescaped'), 'class'=>'form-control')); ?>
<?php echo CHtml::dropDownList('deleteattribute',"",CHtml::listData($tokenfieldlist,'id','description'),array('empty' => gT('(None)','unescaped'), 'class'=>'form-control')); ?>
</div>
</p>
<p>
Expand Down

1 comment on commit 758748d

@maziminke
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow, the fastest fix every I'd say :-)

Please sign in to comment.