From 70ad5de3a1d4fffc8b3d97c301194bb0258b4c68 Mon Sep 17 00:00:00 2001 From: Greg Froese Date: Mon, 18 May 2009 12:57:59 +0000 Subject: fixed watermarking after code re-org and added most recently viewed option --- start.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'start.php') diff --git a/start.php b/start.php index f0c6a22f9..4a50c5092 100644 --- a/start.php +++ b/start.php @@ -147,6 +147,9 @@ add_submenu_item( elgg_echo('tidypics:mostrecent'), $CONFIG->wwwroot . 'pg/photos/mostrecent', 'tidypics-z'); + add_submenu_item( elgg_echo('tidypics:recentlyviewed'), + $CONFIG->wwwroot . 'pg/photos/recentlyviewed', + 'tidypics-z'); } @@ -243,6 +246,11 @@ if (isset($page[1])) set_input('guid',$page[1]); include($CONFIG->pluginspath . "tidypics/friendmostrecent.php"); break; + + case "recentlyviewed": + if (isset($page[1])) set_input('guid',$page[1]); + include($CONFIG->pluginspath . "tidypics/recentlyviewed.php"); + break; } } else -- cgit v1.2.3