diff options
author | Mario <mario@mariovavti.com> | 2020-02-10 12:25:11 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-02-10 12:25:11 +0100 |
commit | 50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084 (patch) | |
tree | a5a7646e1401b2c943d426f1198c3834f62baee6 /include/text.php | |
parent | 33be244d8a4ab62d52f7715b5f95ed293be79504 (diff) | |
parent | bbcb237f5b996e94af37611152105b2e965ea493 (diff) | |
download | volse-hubzilla-50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084.tar.gz volse-hubzilla-50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084.tar.bz2 volse-hubzilla-50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084.zip |
Merge branch 'dev' into 'dev'
poll updates
See merge request hubzilla/core!1828
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index caecae33e..992b455c8 100644 --- a/include/text.php +++ b/include/text.php @@ -1880,6 +1880,17 @@ function format_poll($item,$s,$opts) { } } } + if ($item['comments_closed'] > NULL_DATE) { + $t = datetime_convert('UTC',date_default_timezone_get(), $item['comments_closed'], 'Y-m-d h:i'); + $closed = ((datetime_convert() > $item['comments_closed']) ? true : false); + if ($closed) { + $message = t('Poll has ended.'); + } + else { + $message = sprintf(t('Poll ends: %s'),$t); + } + $output .= EOL . '<div>' . $message . '</div>'; + } if ($activated and $commentable) { $output .= EOL . '<input type="button" class="btn btn-std btn-success" name="vote" value="vote" onclick="submitPoll(' . $item['id'] . '); return false;">'. '</form>'; } @@ -3721,7 +3732,7 @@ function array_path_exists($str,$arr) { if($search) { foreach($search as $s) { - if(array_key_exists($s,$ptr)) { + if($ptr && array_key_exists($s,$ptr)) { $ptr = $ptr[$s]; } else { |