1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 09:04:38 +02:00

Fixes #4438 - missing fields. Removed empty row from "Create News"

This commit is contained in:
Cameron
2021-03-09 10:38:31 -08:00
parent 5735b93d30
commit 2db174defe
2 changed files with 2 additions and 2 deletions

View File

@@ -168,7 +168,7 @@ class pageClass
$this->debug .= "<b>pageSelected</b> ".$this->pageSelected." <br />";
}
$books = e107::getDb()->retrieve("SELECT chapter_id,chapter_sef,chapter_name,chapter_parent FROM #page_chapters ORDER BY chapter_id ASC" , true);
$books = e107::getDb()->retrieve("SELECT chapter_id,chapter_sef,chapter_name,chapter_parent,chapter_meta_description,chapter_image,chapter_icon FROM #page_chapters ORDER BY chapter_id ASC" , true);
foreach($books as $row)
{