summaryrefslogtreecommitdiffstats
path: root/rpc.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-05-02 19:38:53 +0200
committerAndreas Unterkircher <unki@netshadow.at>2008-05-04 21:52:22 +0200
commit9471faab6c00b48b901ecb75113d34a934844bf4 (patch)
tree1a4927c48feec656a3c1a75b6a7071773966cb2d /rpc.php
parent4dbea8ece530c8bbf16e9e70f7cd0b3ad0ebe3fc (diff)
issue118, first code for friendly looking URLs and new config-option $user_friendly_url
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'rpc.php')
-rw-r--r--rpc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc.php b/rpc.php
index bdb6206..5ff334e 100644
--- a/rpc.php
+++ b/rpc.php
@@ -65,7 +65,7 @@ class PHPFSPOT_RPC {
switch($action) {
case 'showphoto':
if(isset($_GET['id']) && is_numeric($_GET['id'])) {
- $phpfspot->showPhoto($_GET['id']);
+ print $phpfspot->showPhoto($_GET['id']);
}
break;