adds news to front page
This commit is contained in:
parent
d43f18813e
commit
d22814b2da
|
@ -28,13 +28,15 @@
|
|||
// Build homepage
|
||||
public static function homepage($settings) {
|
||||
global $config;
|
||||
|
||||
$query = query("SELECT * FROM ``news`` ORDER BY `time` DESC") or error(db_error());
|
||||
$news = $query->fetchAll(PDO::FETCH_ASSOC);
|
||||
return Element(
|
||||
'themes/categories/frames.html',
|
||||
Array(
|
||||
'config' => $config,
|
||||
'settings' => $settings,
|
||||
'categories' => Categories::getCategories($config),
|
||||
'news' => $news,
|
||||
'boardlist' => createBoardlist(false)
|
||||
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue