diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-06-18 01:54:52 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-06-18 01:54:52 +0000 |
commit | effbb14022495081f80acdc1d68ced09c1dd67c0 (patch) | |
tree | 7112315a02ee181a45385d7270317203201b21b1 /start.php | |
parent | 5b8a7460d026d91f5c2411673f3b02be2b0e724d (diff) | |
download | elgg-effbb14022495081f80acdc1d68ced09c1dd67c0.tar.gz elgg-effbb14022495081f80acdc1d68ced09c1dd67c0.tar.bz2 |
added the framework to get a list of photos tagged with a user
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -253,6 +253,11 @@ include($CONFIG->pluginspath . "tidypics/world.php");
break;
+ case "search": //view an image individually
+ if (isset($page[1])) set_input('guid',$page[1]);
+ include($CONFIG->pluginspath . "tidypics/search.php");
+ break;
+
case "rate": //rate image
if (isset($page[1])) set_input('guid',$page[1]);
include($CONFIG->pluginspath . "tidypics/actions/rate.php");
|