aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notes.php
blob: 4bb97fc9e0c2385c1d1865ff7f1f00ebff8052f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php /** @file */

function notes_init(&$a) {

	if(! local_channel())
		return;

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

	// push updates to channel clones

	if((argc() > 1) && (argv(1) === 'sync')) {
		require_once('include/zot.php');
		build_sync_packet();
	}

	logger('notes saved.', LOGGER_DEBUG);
	json_return_and_die($ret);
	
}