mirror of
https://github.com/friendica/friendica
synced 2025-04-25 09:50:11 +00:00
Some more "escapeTags" removed
This commit is contained in:
parent
8e65bdd011
commit
359dad4244
17 changed files with 76 additions and 89 deletions
|
@ -32,7 +32,6 @@ use Friendica\DI;
|
|||
use Friendica\Model;
|
||||
use Friendica\Model\Profile;
|
||||
use Friendica\Network\HTTPException;
|
||||
use Friendica\Util\Strings;
|
||||
|
||||
/**
|
||||
* Shows the local directory of this node
|
||||
|
@ -59,9 +58,7 @@ class Directory extends BaseModule
|
|||
|
||||
Nav::setSelected('directory');
|
||||
|
||||
$search = (!empty($_REQUEST['search']) ?
|
||||
Strings::escapeTags(trim(rawurldecode($_REQUEST['search']))) :
|
||||
'');
|
||||
$search = trim(rawurldecode($_REQUEST['search'] ?? ''));
|
||||
|
||||
$gDirPath = '';
|
||||
$dirURL = $config->get('system', 'directory');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue