aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Tasklist.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-11-14 18:40:15 +0000
committerMario <mario@mariovavti.com>2024-11-14 18:40:15 +0000
commit01da60b385edad423396abd0858ead5d65a41801 (patch)
treeb29b7e6413d0e02e97962e7a99004503f75e97f3 /Zotlabs/Widget/Tasklist.php
parent72c47cd8db94032bf05a6956f3f15888772051aa (diff)
parent951800eca6045f6e0dc1e9a12c225c8e55b044e9 (diff)
downloadvolse-hubzilla-01da60b385edad423396abd0858ead5d65a41801.tar.gz
volse-hubzilla-01da60b385edad423396abd0858ead5d65a41801.tar.bz2
volse-hubzilla-01da60b385edad423396abd0858ead5d65a41801.zip
Merge branch 'various-phpstan-issues' into 'dev'
Several issues discovered by PHPStan See merge request hubzilla/core!2168
Diffstat (limited to 'Zotlabs/Widget/Tasklist.php')
-rw-r--r--Zotlabs/Widget/Tasklist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Tasklist.php b/Zotlabs/Widget/Tasklist.php
index 96b70af15..9271269cf 100644
--- a/Zotlabs/Widget/Tasklist.php
+++ b/Zotlabs/Widget/Tasklist.php
@@ -19,7 +19,7 @@ class Tasklist {
if(App::$profile_uid !== local_channel())
return EMPTY_STR;
- $o .= '<script>var tasksShowAll = 0; $(document).ready(function() { tasksFetch(); $("#tasklist-new-form").submit(function(event) { event.preventDefault(); $.post( "tasks/new", $("#tasklist-new-form").serialize(), function(data) { tasksFetch(); $("#tasklist-new-summary").val(""); } ); return false; } )});</script>';
+ $o = '<script>var tasksShowAll = 0; $(document).ready(function() { tasksFetch(); $("#tasklist-new-form").submit(function(event) { event.preventDefault(); $.post( "tasks/new", $("#tasklist-new-form").serialize(), function(data) { tasksFetch(); $("#tasklist-new-summary").val(""); } ); return false; } )});</script>';
$o .= '<script>function taskComplete(id) { $.post("tasks/complete/"+id, function(data) { tasksFetch();}); }
function tasksFetch() {
$.get("tasks/fetch" + ((tasksShowAll) ? "/all" : ""), function(data) {