mirror of
https://github.com/friendica/friendica
synced 2025-04-25 03:50:12 +00:00
Rename properly
rename function properly this time!
This commit is contained in:
parent
3eecd108c5
commit
4f07ebb52f
3 changed files with 4 additions and 4 deletions
|
@ -1046,7 +1046,7 @@ function api_statuses_mediap($type)
|
|||
//$txt = urldecode(requestdata('status'));
|
||||
|
||||
if ((strpos($txt, '<') !== false) || (strpos($txt, '>') !== false)) {
|
||||
$txt = HTML::toBBVideo($txt);
|
||||
$txt = HTML::toBBCodeVideo($txt);
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$config->set('Cache.DefinitionImpl', null);
|
||||
$purifier = new HTMLPurifier($config);
|
||||
|
@ -1092,7 +1092,7 @@ function api_statuses_update($type)
|
|||
if (requestdata('htmlstatus')) {
|
||||
$txt = requestdata('htmlstatus');
|
||||
if ((strpos($txt, '<') !== false) || (strpos($txt, '>') !== false)) {
|
||||
$txt = HTML::toBBVideo($txt);
|
||||
$txt = HTML::toBBCodeVideo($txt);
|
||||
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$config->set('Cache.DefinitionImpl', null);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue