From f95833e6dec7e6ca04e96ec81527a90894904254 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sun, 13 Jan 2008 17:45:48 +0100 Subject: issue100, switch search to POST HTTP Signed-off-by: Andreas Unterkircher --- rpc.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'rpc.php') diff --git a/rpc.php b/rpc.php index 1f8698e..b2d258c 100644 --- a/rpc.php +++ b/rpc.php @@ -43,10 +43,15 @@ class PHPFSPOT_RPC { /* if no action is specified, no need to further process this * function here. */ - if(!isset($_GET['action'])) + if(!isset($_GET['action']) && !isset($_POST['action'])) return; - switch($_GET['action']) { + if(isset($_GET['action'])) + $action = $_GET['action']; + if(isset($_POST['action'])) + $action = $_POST['action']; + + switch($action) { case 'showphoto': if(isset($_GET['id']) && is_numeric($_GET['id'])) { $fspot->showPhoto($_GET['id']); @@ -102,7 +107,7 @@ class PHPFSPOT_RPC { break; case 'search': - $fspot->startSearch($_GET['for']); + print $fspot->startSearch($_GET['for']); break; case 'update_sort_order': -- cgit v1.2.3-18-g5258