Reputation:
New:
Fixed:
- Add phrases for hide description. The phrase starts with
xc_hide_bbcode_desc
.
- Fix error with article thread
- Fix conflict with
[TickTackk] Remove Spoiler From Quote
Reputation:
Delete Copyright
Reputation:
Reputation:
Fixed:
- An empty drop-down menu is displayed while editing a post.
<?php
/*************************************************************************
* Hide BBCode - XenConcept (c) 2020
* All Rights Reserved.
**************************************************************************
* This file is subject to the terms and conditions defined in the Licence
* Agreement available at Try it like it buy it :)
*************************************************************************/
namespace XenConcept\HideBBCode\Template\Callback;
class Copyright
{
/**
* @return string
*/
public static function getCopyrightText()
{
$app = \XF::app();
$branding = $app->offsetExists('xenconcept_branding') ? $app->xenconcept_branding : [];
if (!count($branding) OR !is_array($branding))
{
return '';
}
$html = '';
$app->xenconcept_branding = [];
return $html;
}
}