Skip to content

Commit

Permalink
Fixed issue #10364: Last visited question can take a big part
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Feb 22, 2016
1 parent 9bcda92 commit 1539ab4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/views/admin/super/welcome.php
Expand Up @@ -87,7 +87,7 @@
<?php if($showLastQuestion):?>
<span id="last_question" class="rotateHidden">
<?php eT("Last visited question:");?>
<a href="<?php echo $last_question_link;?>" class=""><?php echo mb_substr(strip_tags($last_question_name), 0, 60);?></a>
<a href="<?php echo $last_question_link;?>" class=""><?php echo viewHelper::flatEllipsizeText($last_question_name, true, 60); ?></a>
</span>
<?php endif; ?>
</div>
Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/survey/surveySummary_view.php
Expand Up @@ -273,7 +273,7 @@
<div class="row text-left">
<div class="col-sm-12">
<?php eT("Last visited question:");?>
<a href="<?php echo $last_question_link;?>" class=""><?php echo mb_substr(strip_tags($last_question_name), 0, 60);?></a>
<a href="<?php echo $last_question_link;?>" class=""><?php echo viewHelper::flatEllipsizeText($last_question_name, true, 60); ?></a>
<br/><br/>
</div>
</div>
Expand Down

0 comments on commit 1539ab4

Please sign in to comment.