Changed all calls to View::render() in views to use absolute path within module

Maximises compatibility with view overrides, preventing "View not Found – yii\base\ViewNotFoundException" errors when a view is overridden that contains a call to `View::render()` and a relative path was specified
This commit is contained in:
Alec Pritchard
2018-05-01 12:17:43 +01:00
parent bc438974f0
commit a604abb018
13 changed files with 13 additions and 13 deletions

View File

@ -32,7 +32,7 @@ use yii\helpers\Html;
<h3 class="panel-title"><?= Html::encode($this->title) ?></h3>
</div>
<div class="panel-body">
<?= $this->render('_menu') ?>
<?= $this->render('/shared/_menu') ?>
<?= $content ?>
</div>
</div>

View File

@ -20,7 +20,7 @@ $this->title = $title;
?>
<?= $this->render(
'_alert',
'/shared/_alert',
[
'module' => $module,
]