* */ require_once "src/base.inc.php"; require_once "src/header.inc.php"; // Make sure we had a path info if (!isset($_SERVER['PATH_INFO'])) { errorNotFound(); } // Clean up the id in the path info. $id = substr($_SERVER['PATH_INFO'], 1, strpos($_SERVER['PATH_INFO'], '.') - 1); if (!is_numeric($id)) { errorNotFound(); } // Get the post. $post = Post::getById($id); if (!$post or (!isset($_GET['moderate']) and $post->getStage() != 'approved')) { errorNotFound(); } if (isset($_GET['moderate'])) { if (!isset($_SESSION['currentUser'])) { header('Location: ' . $CONFIG['urlroot'].'/moderate/login.php'); exit(); } echo "
You are moderating this post: "; printf("Approve " . "Reject", $post->getId(), $post->getId()); echo "

Return to moderation

"; echo "
"; } // Display the post. echo "

". $post->getName(); if ($post->getPrice() != 0) { echo ' - $' . $post->getPrice(); } echo "

"; echo "

Date: ". date('r', $post->getTimestamp()) ."

"; echo "

Email: getPublicEmail() ."\">" . $post->getPublicEmail() ."

"; echo "

Location: ". $post->getLocation() ."

"; echo "

". str_replace("\n", '
', $post->getDescription()) ."

"; foreach ($post->getImages() as $imgid) { echo "

"; } require_once "src/footer.inc.php"; function errorNotFound() { // Get the 404 page $page = Page::getByUrl('404'); if ($page) { echo $page->getContent(); } else { echo "Error: Page not found."; } require_once "src/footer.inc.php"; exit; } ?>