Daniel J. Summers
da9a569e4a
- Move feed-specific database calls to Feed class - Detect when feed items have been updated - Add const keys for $_REQUEST values
15 lines
213 B
PHP
15 lines
213 B
PHP
<?php
|
|
/**
|
|
* Home Page
|
|
*
|
|
* Displays a list of unread feed items for the current user
|
|
*/
|
|
|
|
include '../start.php';
|
|
|
|
Security::verifyUser();
|
|
|
|
page_head('Welcome'); ?>
|
|
<p>Unread items go here</p><?php
|
|
page_foot();
|