diff options
Diffstat (limited to 'rpc.php')
-rw-r--r-- | rpc.php | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -75,6 +75,7 @@ class PHPFSPOT_RPC { case 'reset': $fspot->resetTagSearch(); + $fspot->resetNameSearch(); $fspot->resetTags(); $fspot->resetDateSearch(); $fspot->resetPhotoView(); @@ -101,14 +102,7 @@ class PHPFSPOT_RPC { break; case 'search': - $fspot->startSearch($_GET['for'], $_GET['from'], $_GET['to']); - - if((isset($_GET['from']) && $fspot->isValidDate($_GET['from'])) && - (isset($_GET['to']) && $fspot->isValidDate($_GET['to']))) { - } - else { - $fspot->startSearch($_GET['for']); - } + $fspot->startSearch($_GET['for']); break; case 'update_sort_order': |