Skip to content

Commit

Permalink
Dev: Add missing semicolon in non-breaking space
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Apr 15, 2016
1 parent a022a68 commit 47a3aa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/helpers/SurveyRuntimeHelper.php
Expand Up @@ -34,7 +34,7 @@ protected function createFullQuestionIndexByGroupMenu($LEMsessid)
$html = '';
$html .= "\n\n<!-- PRESENT THE INDEX MENU -->\n";
$html .= CHtml::openTag('li', array('id' => 'index-menu', 'class'=>'dropdown'));
$html .= CHtml::link(gT("Question index").'&nbsp<span class="caret"></span>', array('#'), array('class'=>'dropdown-toggle', 'data-toggle'=>"dropdown", 'role'=>"button", 'aria-haspopup'=>"true", 'aria-expanded'=>"false"));
$html .= CHtml::link(gT("Question index").'&nbsp;<span class="caret"></span>', array('#'), array('class'=>'dropdown-toggle', 'data-toggle'=>"dropdown", 'role'=>"button", 'aria-haspopup'=>"true", 'aria-expanded'=>"false"));
$html .= CHtml::openTag('ul', array('class'=>'dropdown-menu'));
foreach ($_SESSION[$LEMsessid]['grouplist'] as $key => $group)
{
Expand Down Expand Up @@ -76,7 +76,7 @@ protected function createFullQuestionIndexByQuestionMenu($LEMsessid)
{
$html = '';
$html .= CHtml::openTag('li', array('id' => 'index', 'class'=>'dropdown'));
$html .= CHtml::link(gT("Question index").'&nbsp<span class="caret"></span>', array('#'), array('class'=>'dropdown-toggle', 'data-toggle'=>"dropdown", 'role'=>"button", 'aria-haspopup'=>"true", 'aria-expanded'=>"false"));
$html .= CHtml::link(gT("Question index").'&nbsp;<span class="caret"></span>', array('#'), array('class'=>'dropdown-toggle', 'data-toggle'=>"dropdown", 'role'=>"button", 'aria-haspopup'=>"true", 'aria-expanded'=>"false"));
$html .= CHtml::openTag('ul', array('class'=>'dropdown-menu'));
$html .= CHtml::openTag('li');
$html .= CHtml::link(gT("Question by question mode not yet supported."), array('#'));
Expand All @@ -92,7 +92,7 @@ protected function createIncrementalQuestionIndexMenu($LEMsessid, $surveyMode)
$html = '';
$html .= "\n\n<!-- PRESENT THE INDEX -->\n";
$html .= CHtml::openTag('li', array('id' => 'index', 'class'=>'dropdown'));
$html .= CHtml::link(gT("Question index").'&nbsp<span class="caret"></span>', array('#'), array('class'=>'dropdown-toggle', 'data-toggle'=>"dropdown", 'role'=>"button", 'aria-haspopup'=>"true", 'aria-expanded'=>"false"));
$html .= CHtml::link(gT("Question index").'&nbsp;<span class="caret"></span>', array('#'), array('class'=>'dropdown-toggle', 'data-toggle'=>"dropdown", 'role'=>"button", 'aria-haspopup'=>"true", 'aria-expanded'=>"false"));
$html .= CHtml::openTag('ul', array('class'=>'dropdown-menu'));

$stepIndex = LimeExpressionManager::GetStepIndexInfo();
Expand Down

0 comments on commit 47a3aa2

Please sign in to comment.