Skip to content

Commit

Permalink
Fixed issue #11264: Token attributes management button colors don't m…
Browse files Browse the repository at this point in the history
…atch the function
  • Loading branch information
c-schmitz committed May 25, 2016
1 parent 4926824 commit d20ea58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/admin/token/managetokenattributes.php
Expand Up @@ -115,7 +115,7 @@
</div>
</div>
<p>
<input type="submit" class="btn btn-default" value="<?php eT('Save'); ?>" />
<input type="submit" class="btn btn-success" value="<?php eT('Save'); ?>" />
<input type='hidden' name='action' value='tokens' />
<input type='hidden' name='subaction' value='updatetokenattributedescriptions' />
</p>
Expand All @@ -138,7 +138,7 @@
</div>
</p>
<p>
<?php echo CHtml::submitButton(gT('Add fields','unescaped'), array('class'=>'btn btn-default')); ?>
<?php echo CHtml::submitButton(gT('Add fields','unescaped'), array('class'=>'btn btn-warning')); ?>
<?php echo CHtml::hiddenField('action','tokens'); ?>
<?php echo CHtml::hiddenField('subaction','updatetokenattributes'); ?>
<?php echo CHtml::hiddenField('sid',$surveyid); ?>
Expand All @@ -153,7 +153,7 @@
</div>
</p>
<p>
<?php echo CHtml::submitButton(gT('Delete attribute','unescaped'), array('class'=>'btn btn-default')); ?>
<?php echo CHtml::submitButton(gT('Delete attribute','unescaped'), array('class'=>'btn btn-danger')); ?>
<?php echo CHtml::hiddenField('action','tokens'); ?>
<?php echo CHtml::hiddenField('subaction','deletetokenattributes'); ?>
<?php echo CHtml::hiddenField('sid',$surveyid); ?>
Expand Down

0 comments on commit d20ea58

Please sign in to comment.