Skip to content

Commit

Permalink
Fixed issue #11252: Consistent description for links to admin home
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed May 24, 2016
1 parent a076a95 commit 5ec9fe3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion application/controllers/admin/checkintegrity.php
Expand Up @@ -41,7 +41,7 @@ public function index()


$aData['fullpagebar']['returnbutton']['url']='admin/index';
$aData['fullpagebar']['returnbutton']['text']=gT('Return to admin panel');
$aData['fullpagebar']['returnbutton']['text']=gT('Return to admin home');

$this->_renderWrappedTemplate('checkintegrity', 'check_view', $aData);
}
Expand Down
2 changes: 1 addition & 1 deletion application/controllers/admin/pluginmanager.php
Expand Up @@ -65,7 +65,7 @@ public function index()
}

$aData['fullpagebar']['returnbutton']['url'] = 'index';
$aData['fullpagebar']['returnbutton']['text'] = gT('Return to admin panel');
$aData['fullpagebar']['returnbutton']['text'] = gT('Return to admin home');
$aData['data'] = $data;
$this->_renderWrappedTemplate('pluginmanager', 'index', $aData);
if(!Permission::model()->hasGlobalPermission('settings','read'))
Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/labels/labelsetsbar_view.php
Expand Up @@ -90,7 +90,7 @@
<a class="btn btn-default pull-right" href="<?php echo $this->createUrl('admin/index'); ?>" role="button" style="display: block">
<span class="glyphicon glyphicon-backward"></span>
&nbsp;&nbsp;
<?php eT('Return to admin panel'); ?>
<?php eT('Return to admin home'); ?>
</a>

<?php endif; ?>
Expand Down
Expand Up @@ -93,7 +93,7 @@
<a class="btn btn-default" href="<?php echo $this->createUrl('admin/index'); ?>" role="button">
<span class="glyphicon glyphicon-backward"></span>
&nbsp;&nbsp;
<?php eT('Return to admin panel'); ?>
<?php eT('Return to admin home'); ?>
</a>
</div>
</div>
Expand Down
Expand Up @@ -211,7 +211,7 @@ function copyprompt(text, defvalue, copydirectory, action)
<a class="btn btn-default" href="<?php echo $this->createUrl("/admin"); ?>" role="button">
<span class="glyphicon glyphicon-backward" ></span>
&nbsp;&nbsp;
<?php eT("Return to admin panel"); ?>
<?php eT("Return to admin home"); ?>
</a>
<?php endif;?>

Expand Down

0 comments on commit 5ec9fe3

Please sign in to comment.