duplicate birthday events showing up

This commit is contained in:
friendica
2014-06-04 21:02:57 -07:00
parent 6e2208394a
commit 4fa3b420ab
2 changed files with 9 additions and 2 deletions

View File

@@ -1,9 +1,9 @@
<?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'] == '') {
@@ -18,7 +18,7 @@ function notes_init(&$a) {
build_sync_packet();
}
logger('notes saved.');
logger('notes saved.', LOGGER_DEBUG);
json_return_and_die($ret);
}