Skip to content

Commit

Permalink
Dev: Fixed tutorial linking to always contain "Take"
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Jan 9, 2018
1 parent 40dfa3b commit 0edf2ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/core/LsDefaultDataSets.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public static function getTutorialData() {

$returnArray[] = [
'name' => 'beginnerTour',
'title' => 'Take beginner tour',
'title' => 'Beginner tour',
'icon' => 'fa-rocket',
'description' => 'The first start tour to get your first feeling into LimeSurvey',
'active' => 1,
Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/super/_tutorial_menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<?php foreach($aTutorials as $oTutorial) { ?>
<li>
<a href="#" onclick="window.tourLibrary.triggerTourStart('<?=$oTutorial->name?>')">
<i class="fa <?=gT($oTutorial->icon)?>"></i>&nbsp;<?=gT($oTutorial->title)?>
<i class="fa <?=$oTutorial->icon?>"></i>&nbsp;<?=gT('Take')?> <?=gT($oTutorial->title)?>
</a>
</li>
<?php } ?>
Expand Down

0 comments on commit 0edf2ec

Please sign in to comment.