Convert instances of theme_url() to just url() to match the API change

made in dbeadc1407
This commit is contained in:
Bharat Mediratta
2009-07-23 10:20:49 -07:00
parent 7f1a7ead58
commit 41b8f943a6
5 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
<ul>
<? foreach ($comments as $i => $comment): ?>
<li class="<?= ($i % 2 == 0) ? "gEvenRow" : "gOddRow" ?>">
<img src="<?= $comment->author()->avatar_url(32, $theme->theme_url("images/avatar.jpg", true)) ?>"
<img src="<?= $comment->author()->avatar_url(32, $theme->url("images/avatar.jpg", true)) ?>"
class="gAvatar"
alt="<?= p::clean($comment->author_name()) ?>"
width="32"