Fix the content manager show that it will display the content again

This commit is contained in:
Mark Crane 2014-09-01 20:23:18 +00:00
parent d742f190f1
commit 2ecff725d3
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ require_once "resources/require.php";
$content_prep_statement->bindParam(':content', $content);
}
$content_prep_statement->execute();
$result = $content_prep_statement->fetchAll(PDO::FETCH_NAMED);
$content_result = $content_prep_statement->fetchAll(PDO::FETCH_NAMED);
$page["title"] = '';
foreach($content_result as $content_row) {
$template_rss_sub_category = $content_row['rss_sub_category'];