aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notes.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-04 21:02:57 -0700
committerfriendica <info@friendica.com>2014-06-04 21:02:57 -0700
commit4fa3b420ab974be301bfe5a5861e00b4d06503b3 (patch)
tree84c244b082a32118c8ec351e802339f9b42c500a /mod/notes.php
parent6e2208394a61eb4ef0893604a60de03775fe6c86 (diff)
downloadvolse-hubzilla-4fa3b420ab974be301bfe5a5861e00b4d06503b3.tar.gz
volse-hubzilla-4fa3b420ab974be301bfe5a5861e00b4d06503b3.tar.bz2
volse-hubzilla-4fa3b420ab974be301bfe5a5861e00b4d06503b3.zip
duplicate birthday events showing up
Diffstat (limited to 'mod/notes.php')
-rw-r--r--mod/notes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/notes.php b/mod/notes.php
index e21e4386c..84f8a7093 100644
--- a/mod/notes.php
+++ b/mod/notes.php
@@ -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);
}