From 0ceb75ea0969b14163d884e4d266695d74491248 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 18 Nov 2016 13:55:48 +0100 Subject: add a simple checkbox template for use in widgets --- include/widgets.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/widgets.php b/include/widgets.php index 3dc555b46..8a3fac0e4 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -967,7 +967,7 @@ function widget_wiki_list($arr) { '$view' => t('View'), '$addnew' => t('Create new wiki'), '$create' => t('Create'), - '$wikiName' => array('wikiName', t('Wiki name'), '', ''), + '$wikiName' => array('wikiName', t('Wiki name')), '$lockstate' => $x['lockstate'], '$acl' => $x['acl'], '$allow_cid' => $x['allow_cid'], @@ -975,7 +975,7 @@ function widget_wiki_list($arr) { '$deny_cid' => $x['deny_cid'], '$deny_gid' => $x['deny_gid'], '$bang' => $x['bang'], - '$notify' => t('Send notification') + '$notify' => array('postVisible', t('Send notification')) )); } return ''; -- cgit v1.2.3 From 3147b7c62bf1541b3c458baa5b5af47c0663ead2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 18 Nov 2016 14:15:01 +0100 Subject: revert simple checkbox --- include/widgets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/widgets.php b/include/widgets.php index 8a3fac0e4..c0cc15e34 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -975,7 +975,7 @@ function widget_wiki_list($arr) { '$deny_cid' => $x['deny_cid'], '$deny_gid' => $x['deny_gid'], '$bang' => $x['bang'], - '$notify' => array('postVisible', t('Send notification')) + '$notify' => array('postVisible', t('Send notification'), '', '', array(t('No'), t('Yes'))) )); } return ''; -- cgit v1.2.3