aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2019-01-30 18:34:44 -0800
committerzotlabs <mike@macgirvin.com>2019-01-30 18:34:44 -0800
commita56bc0e1e03aa6b369cf33fc4f4af49c55f3a276 (patch)
tree7b056227c860c3023532d80181e6c7a526bb0bd7 /Zotlabs/Module
parent519db2aacef0a0a4f107cd4d829993ed51771159 (diff)
parente64c5661da564426fa597e665451112177719aca (diff)
downloadvolse-hubzilla-a56bc0e1e03aa6b369cf33fc4f4af49c55f3a276.tar.gz
volse-hubzilla-a56bc0e1e03aa6b369cf33fc4f4af49c55f3a276.tar.bz2
volse-hubzilla-a56bc0e1e03aa6b369cf33fc4f4af49c55f3a276.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into xdev_merge
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Notes.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/Zotlabs/Module/Notes.php b/Zotlabs/Module/Notes.php
index 178a6bce0..7572f7420 100644
--- a/Zotlabs/Module/Notes.php
+++ b/Zotlabs/Module/Notes.php
@@ -1,28 +1,31 @@
<?php
-namespace Zotlabs\Module; /** @file */
+namespace Zotlabs\Module;
use App;
use Zotlabs\Web\Controller;
use Zotlabs\Lib\Apps;
+/**
+ * @brief Notes Module controller.
+ */
class Notes extends Controller {
function post() {
-
+
if(! local_channel())
return EMPTY_STR;
if(! Apps::system_app_installed(local_channel(), 'Notes'))
return EMPTY_STR;
-
+
$ret = array('success' => true);
if(array_key_exists('note_text',$_REQUEST)) {
$body = escape_tags($_REQUEST['note_text']);
-
+
// I've had my notes vanish into thin air twice in four years.
- // Provide a backup copy if there were contents previously
+ // Provide a backup copy if there were contents previously
// and there are none being saved now.
-
+
if(! $body) {
$old_text = get_pconfig(local_channel(),'notes','text');
if($old_text)
@@ -40,11 +43,9 @@ class Notes extends Controller {
logger('notes saved.', LOGGER_DEBUG);
json_return_and_die($ret);
-
}
function get() {
-
if(! local_channel())
return EMPTY_STR;
@@ -61,7 +62,6 @@ class Notes extends Controller {
$arr = ['app' => true];
return $w->widget($arr);
-
}
-
+
}