mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-14 20:17:46 +02:00
parent
c745fd8b28
commit
3a57538572
59 changed files with 417 additions and 399 deletions
|
|
@ -31,10 +31,10 @@ trait AnalyticsTrait
|
|||
|
||||
$referer = $session->get('referer');
|
||||
$domain =
|
||||
parse_url($referer, PHP_URL_HOST) === null
|
||||
parse_url((string) $referer, PHP_URL_HOST) === null
|
||||
? '- Direct -'
|
||||
: parse_url($referer, PHP_URL_HOST);
|
||||
parse_str((string) parse_url($referer, PHP_URL_QUERY), $queries);
|
||||
: parse_url((string) $referer, PHP_URL_HOST);
|
||||
parse_str((string) parse_url((string) $referer, PHP_URL_QUERY), $queries);
|
||||
$keywords = $queries['q'] ?? null;
|
||||
|
||||
$procedureName = $db->prefixTable('analytics_website');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue