Skip to content

Commit

Permalink
Fixed method name display in error view.
Browse files Browse the repository at this point in the history
  • Loading branch information
qiangxue committed Jul 28, 2013
1 parent b42f518 commit f4f57bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/yii/views/errorHandler/callStackItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit f4f57bf

Please sign in to comment.