diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-01-13 18:35:00 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-01-13 18:35:00 +0100 |
commit | d9ee4599c943bf674f180a5fab849ec256658a41 (patch) | |
tree | 4a4e7030ba9ade2a89cec6d7dcf4ec1d2bc5bd3d /phpfspot.class.php | |
parent | f95833e6dec7e6ca04e96ec81527a90894904254 (diff) |
issue100, add/remove tag and tag-condition use HTTP POST
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 0954040..8646ff1 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -643,6 +643,9 @@ class PHPFSPOT { if(!in_array($tag, $_SESSION['selected_tags'])) array_push($_SESSION['selected_tags'], $tag); + + + return "ok"; } // addTag() @@ -663,6 +666,8 @@ class PHPFSPOT { sort($_SESSION['selected_tags']); } + return "ok"; + } // delTag() /** @@ -1447,6 +1452,8 @@ class PHPFSPOT { { $_SESSION['tag_condition'] = $mode; + return "ok"; + } // setTagCondition() /** |