diff options
author | raylu <raylu@mixpanel.com> | 2011-07-16 22:07:00 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-16 22:07:00 -0700 |
commit | 5cc64bc633e8ff287cf7bb16ab1a8b8d2afb29b3 (patch) | |
tree | 77cfb712e6bc2b469702101d031791e16f2a022e /views/search/index.html.php | |
parent | 3404aebda95c78a98e477c120354f20891f55c7b (diff) | |
download | otakuhub-5cc64bc633e8ff287cf7bb16ab1a8b8d2afb29b3.tar.xz |
kdrama search results on search/index
Diffstat (limited to 'views/search/index.html.php')
-rw-r--r-- | views/search/index.html.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/search/index.html.php b/views/search/index.html.php index f8889e2..bee0bb8 100644 --- a/views/search/index.html.php +++ b/views/search/index.html.php @@ -9,7 +9,7 @@ $this->styles($this->html->style('search')); <div class="triangle-ribbon"></div> <?= $this->_render('element', 'animetable', compact('anime')) ?> <p class="more"> -<a href="/search/anime/<?= $q ?>">More</a> +<a href="/search/anime/?q=<?= $q ?>">More</a> </p> <h2 class="ribbon">Manga</h2> @@ -17,15 +17,15 @@ $this->styles($this->html->style('search')); <p>results</p> <?php if(count($manga) > 0): ?> <p class="more"> -<a href="/search/manga/<?= $q ?>">More</a> +<a href="/search/manga/?q=<?= $q ?>">More</a> </p> <?php endif ?> <h2 class="ribbon">K-Drama</h2> <div class="triangle-ribbon"></div> -<p>results</p> +<?= $this->_render('element', 'kdramatable', compact('anime')) ?> <?php if(count($kdrama) > 0): ?> <p class="more"> -<a href="/search/kdrama/<?= $q ?>">More</a> +<a href="/search/kdrama/?q=<?= $q ?>">More</a> </p> <?php endif ?> |