您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
226 B
PHP

<?php
/**
* Simple way to block people that aren't logged in.
*/
require_once 'required.php';
if ($_SESSION['loggedin'] !== true || is_empty($_SESSION['user'])) {
sendError('You must be logged in to continue.', true);
}