summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorMichael Francis <edude03@gmail.com>2011-07-24 23:15:24 -0400
committerMichael Francis <edude03@gmail.com>2011-07-24 23:15:24 -0400
commitc1772289909a5886af3454dae3c4cc519879bd68 (patch)
tree2e34a34062d0b913e6c6323033d37b8a2a2fcff2 /views
parent076fd2df00a8a099f4eebd8a5dd1cb551db4dbdc (diff)
downloadotakuhub-c1772289909a5886af3454dae3c4cc519879bd68.tar.xz
Changed $content to $anime to match change in the controller
Diffstat (limited to 'views')
-rw-r--r--views/anime_list/addsearch.html.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/anime_list/addsearch.html.php b/views/anime_list/addsearch.html.php
index eb5cbe1..2e3c935 100644
--- a/views/anime_list/addsearch.html.php
+++ b/views/anime_list/addsearch.html.php
@@ -3,10 +3,10 @@
<?= $this->form->text('Search', array('value' => 'Search for...')); ?>
<?= $this->form->submit('Go', array('class' => 'button')); ?>
<?= $this->form->end(); ?>
-<?php if (isset($content)): ?>
+<?php if (isset($anime)): ?>
<table class="table">
<tr><th>Entry #</th><th>Name</th><th>Type</th><th>Episodes</th><th>Score</th><th>Add</th></tr>
- <?php $i = 1; foreach($content as $result): ?>
+ <?php $i = 1; foreach($anime as $result): ?>
<tr>
<td># <?= $i ?></td>
<td><?= $result->title ?></td>