mirror of
https://github.com/kvazar-network/webapp.git
synced 2025-01-31 09:14:26 +00:00
unify data types
This commit is contained in:
parent
2922454c36
commit
4a2674440f
@ -4,9 +4,9 @@ require_once('../config.php');
|
||||
require_once('../library/icon.php');
|
||||
require_once('../library/sqlite.php');
|
||||
|
||||
$query = isset($_GET['q']) ? preg_replace('/[^\w\s]+/u', '', $_GET['q']) : false;
|
||||
$ns = isset($_GET['ns']) ? preg_replace('/[^a-zA-Z0-9]+/', '', $_GET['ns']) : false;
|
||||
$tx = isset($_GET['tx']) ? preg_replace('/[^a-zA-Z0-9]+/', '', $_GET['tx']) : false;
|
||||
$query = isset($_GET['q']) ? preg_replace('/[^\w\s]+/u', '', $_GET['q']) : '';
|
||||
$ns = isset($_GET['ns']) ? preg_replace('/[^a-zA-Z0-9]+/', '', $_GET['ns']) : '';
|
||||
$tx = isset($_GET['tx']) ? preg_replace('/[^a-zA-Z0-9]+/', '', $_GET['tx']) : '';
|
||||
$page = (int) isset($_GET['page']) ? $_GET['page'] : 0;
|
||||
$rss = isset($_GET['rss']) ? true : false;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user