mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-20 02:16:41 +08:00
Fixed method name display in error view.
This commit is contained in:
@ -20,7 +20,7 @@
|
||||
<?php if ($method !== null): ?>
|
||||
<span class="call">
|
||||
<?php if ($file !== null) echo '–' ?>
|
||||
<?php if ($class !== null) echo $this->addTypeLinks($class) . '→'; ?><?php echo $this->addTypeLinks($method . '()'); ?>
|
||||
<?php if ($class !== null) echo $this->addTypeLinks($class) . '::'; ?><?php echo $this->addTypeLinks($method . '()'); ?>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
<span class="at"><?php if ($line !== null) echo 'at line'; ?></span>
|
||||
|
Reference in New Issue
Block a user