Enhancements to the probing of pump.io profiles [annando]
Enhancements to the handling of BBCode tags [MrPetovan]
Enhancements to the OEmbed handling [MrPetovan]
- Fixed a bug that triggered the display of activities on the cummunity page [annando]
+ Fixed a bug that triggered the display of activities on the community page [annando]
Fixed a bug with personal notes [annando]
Fixed a display issue of long postings when using the showmore option [annando]
Fixed a bug that caused Twidere to crash on reload [annando]
}
/**
- * Database query for the comunity page
+ * Database query for the community page
*
* @param $min_id
* @param $max_id
$content = '';
if (self::$forumContactId) {
- // If self::$forumContactId belongs to a communitity forum or a privat goup,.add a mention to the status editor
+ // If self::$forumContactId belongs to a community forum or a privat goup,.add a mention to the status editor
$condition = ["`id` = ? AND `contact-type` = ?", self::$forumContactId, Contact::TYPE_COMMUNITY];
$contact = DBA::selectFirst('contact', ['addr'], $condition);
if (!empty($contact['addr'])) {
</div>
{{/if}}
-{{if $comunity_profiles_title}}
+{{if $community_profiles_title}}
<div id="right_profiles" class="widget">
-<h3>{{$comunity_profiles_title}}</h3>
+<h3>{{$community_profiles_title}}</h3>
<div id='lastusers-wrapper' class='items-wrapper'>
-{{foreach $comunity_profiles_items as $i}}
+{{foreach $community_profiles_items as $i}}
{{$i nofilter}}
{{/foreach}}
</div>
$url = DI::baseUrl();
$aside['$url'] = $url;
- // comunity_profiles
+ // community_profiles
if ($show_profiles) {
$contacts = Contact\Relation::getCachedSuggestions(DI::userSession()->getLocalUserId(), 0, 9);
$tpl = Renderer::getMarkupTemplate('ch_directory_item.tpl');
if (DBA::isResult($contacts)) {
- $aside['$comunity_profiles_title'] = DI::l10n()->t('Community Profiles');
- $aside['$comunity_profiles_items'] = [];
+ $aside['$community_profiles_title'] = DI::l10n()->t('Community Profiles');
+ $aside['$community_profiles_items'] = [];
foreach ($contacts as $contact) {
$entry = Renderer::replaceMacros($tpl, [
'$photo' => Contact::getMicro($contact),
'$alt_text' => $contact['name'],
]);
- $aside['$comunity_profiles_items'][] = $entry;
+ $aside['$community_profiles_items'][] = $entry;
}
}
}