diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-12-12 21:31:43 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-12-12 21:31:43 +0000 |
commit | c2feaa1bbed0831c4e4bf7d769f4e028b390fa2c (patch) | |
tree | 2d1bcf032fb72a2fc567cad3db997c8b137b904a /start.php | |
parent | 621177abc2bc60e9edb3ca723a4afaa9d9e713ef (diff) | |
download | elgg-c2feaa1bbed0831c4e4bf7d769f4e028b390fa2c.tar.gz elgg-c2feaa1bbed0831c4e4bf7d769f4e028b390fa2c.tar.bz2 |
starting process of moving thumbnail to page handler
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -283,6 +283,12 @@ include($CONFIG->pluginspath . "tidypics/pages/download.php"); break; + case "thumbnail": // tidypics thumbnail + if (isset($page[1])) set_input('file_guid', $page[1]); + if (isset($page[2])) set_input('size', $page[2]); + include($CONFIG->pluginspath . "tidypics/pages/thumbnail.php"); + break; + case "tagged": // all photos tagged with user if (isset($page[1])) set_input('guid',$page[1]); include($CONFIG->pluginspath . "tidypics/pages/tagged.php"); |