aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-05-02 23:18:09 -0700
committerzotlabs <mike@macgirvin.com>2018-05-02 23:18:09 -0700
commit75c8f656c9cb6d4b664cccd2e72e23499547d088 (patch)
tree9cc3e0ed340283fe168bb904c911248a2f7fd661 /Zotlabs
parent459ec78a5e3cb09ee908fd7810bbb0b80b2e4713 (diff)
parentd83f12e883e79b7268677f8981579102c48ca00b (diff)
downloadvolse-hubzilla-75c8f656c9cb6d4b664cccd2e72e23499547d088.tar.gz
volse-hubzilla-75c8f656c9cb6d4b664cccd2e72e23499547d088.tar.bz2
volse-hubzilla-75c8f656c9cb6d4b664cccd2e72e23499547d088.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Update/_1211.php2
-rw-r--r--Zotlabs/Widget/Tasklist.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Update/_1211.php b/Zotlabs/Update/_1211.php
index 7068ecbd3..26e25536d 100644
--- a/Zotlabs/Update/_1211.php
+++ b/Zotlabs/Update/_1211.php
@@ -8,7 +8,7 @@ class _1211 {
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r1 = q("ALTER TABLE channel ADD channel_active timestamp NOT NULL DEFAULT '0001-01-01 00:00:00' ");
- $r2 = q("create index \"channel_active\" on channel_active (\"channel_active\")");
+ $r2 = q("create index \"channel_active_idx\" on channel (\"channel_active\")");
$r = ($r1 && $r2);
}
diff --git a/Zotlabs/Widget/Tasklist.php b/Zotlabs/Widget/Tasklist.php
index 3961eecce..56342bd17 100644
--- a/Zotlabs/Widget/Tasklist.php
+++ b/Zotlabs/Widget/Tasklist.php
@@ -21,7 +21,7 @@ class Tasklist {
</script>';
$o .= '<div class="widget">' . '<h3>' . t('Tasks') . '</h3><div class="tasklist-tasks">';
- $o .= '</div><form id="tasklist-new-form" action="" ><input id="tasklist-new-summary" type="text" name="summary" value="" /></form>';
+ $o .= '</div><form id="tasklist-new-form" action="" ><input class="form-control" id="tasklist-new-summary" type="text" name="summary" value="" /></form>';
$o .= '</div>';
return $o;