mirror of
https://github.com/friendica/friendica
synced 2025-04-26 17:10:10 +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\Contact;
|
||||
use Friendica\Model\Post;
|
||||
use Friendica\Network\HTTPException;
|
||||
use Friendica\Util\Strings;
|
||||
|
||||
/**
|
||||
* ACL selector json backend
|
||||
|
@ -69,7 +68,7 @@ class Acl extends BaseModule
|
|||
private static function globalContactSearch()
|
||||
{
|
||||
// autocomplete for global contact search (e.g. navbar search)
|
||||
$search = Strings::escapeTags(trim($_REQUEST['search']));
|
||||
$search = trim($_REQUEST['search']);
|
||||
$mode = $_REQUEST['smode'];
|
||||
$page = $_REQUEST['page'] ?? 1;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue