Browse Source

Fixed method name display in error view.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
f4f57bf08b
  1. 2
      framework/yii/views/errorHandler/callStackItem.php

2
framework/yii/views/errorHandler/callStackItem.php

@ -20,7 +20,7 @@
<?php if ($method !== null): ?>
<span class="call">
<?php if ($file !== null) echo '&ndash;' ?>
<?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>

Loading…
Cancel
Save