aboutsummaryrefslogtreecommitdiff
path: root/start.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-12-12 21:31:43 +0000
committerCash Costello <cash.costello@gmail.com>2009-12-12 21:31:43 +0000
commitc2feaa1bbed0831c4e4bf7d769f4e028b390fa2c (patch)
tree2d1bcf032fb72a2fc567cad3db997c8b137b904a /start.php
parent621177abc2bc60e9edb3ca723a4afaa9d9e713ef (diff)
downloadelgg-c2feaa1bbed0831c4e4bf7d769f4e028b390fa2c.tar.gz
elgg-c2feaa1bbed0831c4e4bf7d769f4e028b390fa2c.tar.bz2
starting process of moving thumbnail to page handler
Diffstat (limited to 'start.php')
-rw-r--r--start.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/start.php b/start.php
index 472bf4881..f2732b3de 100644
--- a/start.php
+++ b/start.php
@@ -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");