mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-26 19:39:02 +02:00
10 lines
159 B
PHP
10 lines
159 B
PHP
<?php
|
|
|
|
$token_name = get_parameter('token_name',0);
|
|
|
|
$value_token = db_get_value('value',
|
|
'tconfig', 'token', $token_name);
|
|
|
|
echo (bool)$value_token;
|
|
|
|
?>
|