diff options
author | raylu <raylu@mixpanel.com> | 2011-07-17 17:44:23 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-17 18:15:47 -0700 |
commit | a4c75f37d8b696af83b14523f0b168d915418c90 (patch) | |
tree | 49745b0e0c5d3f21625f440bcc9eceda41ebc815 /views/anime/view.html.php | |
parent | c9994190d2ba584e1eb95b6b47ff586da7b0f29f (diff) | |
download | otakuhub-a4c75f37d8b696af83b14523f0b168d915418c90.tar.xz |
fix validation errors
Diffstat (limited to 'views/anime/view.html.php')
-rw-r--r-- | views/anime/view.html.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/views/anime/view.html.php b/views/anime/view.html.php index a722935..7f2847f 100644 --- a/views/anime/view.html.php +++ b/views/anime/view.html.php @@ -67,7 +67,7 @@ Members: <?= $anime->mal_score ?> <p> <a href="/anime/cast/<?= $anime->special_id ?>" onclick="return toggleCast()">Cast ↓</a> </p> -<p><table> +<table> <?php foreach($anime->cast as $char): ?> <tr> <td colspan="3"> @@ -84,7 +84,8 @@ Members: <?= $anime->mal_score ?> <?php endforeach; ?> <?php endif; ?> <?php endforeach; ?> -</table></p> +</table> +<br> <p id="castlink"> <a href="" onclick="return toggleCast()">Cast ↑</a> </p> |