public forum author using private posting, correct the comment permissions downstream.
This commit is contained in:
parent
371bdfb19d
commit
341a5a2672
2
boot.php
2
boot.php
|
@ -10,7 +10,7 @@ require_once('include/nav.php');
|
||||||
require_once('include/cache.php');
|
require_once('include/cache.php');
|
||||||
|
|
||||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_VERSION', '3.0.1377' );
|
define ( 'FRIENDICA_VERSION', '3.0.1378' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1149 );
|
define ( 'DB_UPDATE_VERSION', 1149 );
|
||||||
|
|
||||||
|
|
|
@ -814,6 +814,12 @@ function item_store($arr,$force_parent = false) {
|
||||||
if($r[0]['private'])
|
if($r[0]['private'])
|
||||||
$arr['private'] = 1;
|
$arr['private'] = 1;
|
||||||
|
|
||||||
|
// Edge case. We host a public forum that was originally posted to privately.
|
||||||
|
// The original author commented, but as this is a comment, the permissions
|
||||||
|
// weren't fixed up so it will still show the comment as private unless we fix it here.
|
||||||
|
|
||||||
|
if((intval($r[0]['forum_mode']) == 1) && (! $r[0]['private']))
|
||||||
|
$arr['private'] = 0;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 3.0.1377\n"
|
"Project-Id-Version: 3.0.1378\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-06-17 10:00-0700\n"
|
"POT-Creation-Date: 2012-06-18 10:00-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
Loading…
Reference in a new issue