aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notes.php
blob: 468b4ef262bcdcee41a6c81e07af6ec0bc4f4f7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php /** @file */

function notes_init(&$a) {
	if(! local_user())
		return;
	logger('mod_notes: ' . print_r($_REQUEST,true));

	$ret = array('success' => true);
	if($_REQUEST['note_text'] || $_REQUEST['note_text'] == '') {
		$body = escape_tags($_REQUEST['note_text']);
		set_pconfig(local_user(),'notes','text',$body);
	}
	logger('notes saved.');
	json_return_and_die($ret);
	
}