aboutsummaryrefslogtreecommitdiffstats
path: root/mod/editpost.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-04-09 21:13:40 -0700
committerfriendica <info@friendica.com>2014-04-09 21:13:40 -0700
commit8d8d73924224f1f3862bffa4822b7d62600afd62 (patch)
treeeb83b0491fe69a2d712e8b3e898448ec363529a2 /mod/editpost.php
parent795d74171358abe23cc4be01dac0e48d04ee46b4 (diff)
parent5d5ff22b1dc551863342d2c7c7f44607bbd44777 (diff)
downloadvolse-hubzilla-8d8d73924224f1f3862bffa4822b7d62600afd62.tar.gz
volse-hubzilla-8d8d73924224f1f3862bffa4822b7d62600afd62.tar.bz2
volse-hubzilla-8d8d73924224f1f3862bffa4822b7d62600afd62.zip
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'mod/editpost.php')
-rw-r--r--mod/editpost.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/mod/editpost.php b/mod/editpost.php
index 8c4117e7a..6556405e3 100644
--- a/mod/editpost.php
+++ b/mod/editpost.php
@@ -125,8 +125,7 @@ function editpost_content(&$a) {
'$post_id' => $post_id,
'$baseurl' => $a->get_baseurl(),
'$defloc' => $channel['channel_location'],
- '$visitor' => 'none',
- '$pvisit' => 'none',
+ '$visitor' => false,
'$public' => t('Public post'),
'$jotnets' => $jotnets,
'$title' => htmlspecialchars($itm[0]['title'],ENT_COMPAT,'UTF-8'),
@@ -143,9 +142,9 @@ function editpost_content(&$a) {
'$sourceapp' => t($a->sourcename),
'$catsenabled' => $catsenabled,
'$defexpire' => datetime_convert('UTC', date_default_timezone_get(),$itm[0]['expires']),
- '$feature_expire' => ((feature_enabled(get_app()->profile['profile_uid'],'content_expire') && (! $webpage)) ? 'block' : 'none'),
+ '$feature_expire' => ((feature_enabled(get_app()->profile['profile_uid'],'content_expire') && (! $webpage)) ? true : false),
'$expires' => t('Set expiration date'),
- '$feature_encrypt' => ((feature_enabled(get_app()->profile['profile_uid'],'content_encrypt') && (! $webpage)) ? 'block' : 'none'),
+ '$feature_encrypt' => ((feature_enabled(get_app()->profile['profile_uid'],'content_encrypt') && (! $webpage)) ? true : false),
'$encrypt' => t('Encrypt text'),
'$cipher' => $cipher,
'$expiryModalOK' => t('OK'),