aboutsummaryrefslogtreecommitdiff
path: root/actions/addtag.php
blob: 8974d9a2856cd0c2773100d8e56639661c8c900e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
	/**
	 * Tidypics Add Tag
	 * 
	 */

	// 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']);

?>