From 8e50b3f9ce3b9a8e3d8a7a584dcaf20e38a99e2c Mon Sep 17 00:00:00 2001 From: Domovoy Date: Tue, 2 Oct 2012 16:03:20 +0200 Subject: [PATCH] Use saved_searches_aside.tpl in search.php --- mod/search.php | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/mod/search.php b/mod/search.php index 300eb912c1..87c72367e8 100644 --- a/mod/search.php +++ b/mod/search.php @@ -9,13 +9,26 @@ function search_saved_searches() { ); if(count($r)) { - $o .= '
'; - $o .= '

' . t('Saved Searches') . '

' . "\r\n"; - $o .= '
' . "\r\n"; + + + $tpl = get_markup_template("saved_searches_aside.tpl"); + + $o .= replace_macros($tpl, array( + '$title' => t('Saved Searches'), + '$add' => '', + '$searchbox' => '', + '$saved' => $saved, + )); } return $o;