From 5119a5d74428296166658ff746010b8c32abd67f Mon Sep 17 00:00:00 2001 From: "Justin J. Novack" Date: Sun, 16 Sep 2012 11:41:58 -0400 Subject: [PATCH 1/1] www/forbidden.php - FIX: added variables for sidebar search --- www/forbidden.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/www/forbidden.php b/www/forbidden.php index e8fb7ec..1f587a2 100644 --- a/www/forbidden.php +++ b/www/forbidden.php @@ -4,8 +4,12 @@ */ namespace phorkie; require_once 'www-header.php'; + +$db = new Database(); render( 'forbidden', - null + array( + 'recents' => $db->getSearch()->listAll(0, 5, 'crdate', 'desc'), + ) ); ?> -- 2.30.2