diff options
-rw-r--r-- | rpc.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -44,7 +44,10 @@ class PHPFSPOT_RPC { switch($_GET['action']) { case 'showphoto': - print "test"; + + $fspot->prepare_single_photo($_GET['id']); + $fspot->tmpl->show("body.tpl"); + break; } |