Skip to content

Commit

Permalink
Dev: Replace 'optional settings' with 'administrator settings' (not o…
Browse files Browse the repository at this point in the history
…ptional anymore)
  • Loading branch information
olleharstedt authored and c-schmitz committed Feb 22, 2018
1 parent 0ae1f74 commit a1e155c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions application/controllers/InstallerController.php
Expand Up @@ -620,11 +620,11 @@ function stepPopulateDb()
*/
private function stepOptionalConfiguration()
{

$aData = [];
$aData['confirmation'] = Yii::app()->session['optconfig_message'];
$aData['title'] = gT("Optional settings");
$aData['descp'] = gT("Optional settings to give you a head start");
$aData['classesForStep'] = array('off','off','off','off','off','on');
$aData['title'] = gT("Administrator settings");
$aData['descp'] = gT("Further settings for application administrator");
$aData['classesForStep'] = array('off', 'off', 'off', 'off', 'off', 'on');
$aData['progressValue'] = 80;
$this->loadHelper('surveytranslator');
$aData['model'] = $model = new InstallerConfigForm('optional');
Expand Down
2 changes: 1 addition & 1 deletion application/views/installer/sidebar_view.php
Expand Up @@ -31,6 +31,6 @@
<?php eT("Database settings"); ?>
</li>
<li class="<?php echo $classesForStep[5]; ?>">
<?php eT("Optional settings"); ?>
<?php eT("Administrator settings"); ?>
</li>
</ol>

0 comments on commit a1e155c

Please sign in to comment.