diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-04-04 17:28:00 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-04-04 17:28:00 +0000 |
commit | 6d0f039421c7c976d926507d121dc2a3e3e03609 (patch) | |
tree | 8ba2b6af312aa6c99fe14a6dc20b8094310bb99a /actions | |
parent | c9e95410b448a3e0cd4cd6ed25e70aa88e012381 (diff) | |
download | elgg-6d0f039421c7c976d926507d121dc2a3e3e03609.tar.gz elgg-6d0f039421c7c976d926507d121dc2a3e3e03609.tar.bz2 |
almost done with first version of ui for setting tags
Diffstat (limited to 'actions')
-rw-r--r-- | actions/addtag.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/actions/addtag.php b/actions/addtag.php index 34d286061..8974d9a28 100644 --- a/actions/addtag.php +++ b/actions/addtag.php @@ -6,6 +6,17 @@ // Make sure we're logged in (send us to the front page if not)
if (!isloggedin()) forward();
+
+ $coordinates_str = get_input('coordinates');
+ error_log($coordinates_str);
+
+ $user_id = get_input('user_id');
+ //$entity_guid = get_input('entity_guid', null);
+ $word = get_input('word');
+
+ error_log($word);
+ error_log($user_id);
+
forward($_SERVER['HTTP_REFERER']);
|