Removes closing php tags

main
Yasen Pramatarov 2025-03-17 12:38:24 +02:00
parent 69ce646bad
commit aa530c20d2
37 changed files with 1 additions and 74 deletions

View File

@ -645,5 +645,3 @@ class Agent {
return null;
}
}
?>

View File

@ -167,5 +167,3 @@ class Component {
}
}
}
?>

View File

@ -382,5 +382,3 @@ SELECT COUNT(*) AS conferences
}
?>

View File

@ -51,5 +51,3 @@ class Config {
}
}
?>

View File

@ -221,5 +221,3 @@ class Database {
}
}
}
?>

View File

@ -163,5 +163,3 @@ class Host {
}
}
?>

View File

@ -120,5 +120,3 @@ class Log {
return $query->fetchAll(PDO::FETCH_ASSOC);
}
}
?>

View File

@ -372,5 +372,3 @@ AND pe.event_type = 'participant joining'";
}
}
?>

View File

@ -161,5 +161,3 @@ class Platform {
}
}
?>

View File

@ -83,5 +83,3 @@ class Router {
}
}
?>

View File

@ -52,5 +52,3 @@ class Server {
}
}
?>

View File

@ -95,5 +95,3 @@ class Settings {
}
}
?>

View File

@ -451,5 +451,3 @@ class User {
}
}
?>

View File

@ -36,5 +36,3 @@ return [
'environment' => 'development',
];
?>

View File

@ -32,5 +32,3 @@ if (isset($system_messages) && is_array($system_messages)) {
);
}
}
?>

View File

@ -18,5 +18,3 @@ function getUserIP() {
return trim($ip);
}
?>

View File

@ -44,5 +44,3 @@ function switchPlatform($platform_id) {
// return the new URL with the new platform_id
return $new_url;
}
?>

View File

@ -11,5 +11,3 @@ if (!isset($until_time) || (isset($until_time) && $until_time == '')) {
} else {
$time_range_specified = true;
}
?>

View File

@ -59,4 +59,3 @@ function connectDB($config, $database = '', $dbFile = '', $platformId = '') {
}
}
?>

View File

@ -38,5 +38,3 @@ function renderMessage(&$message, $type, $unset = false) {
}
}
}
?>

View File

@ -59,6 +59,3 @@ if (isset($_POST['check_period'])) {
if (isset($_POST['name'])) {
$name = htmlspecialchars($_POST['name']);
}
?>

View File

@ -107,5 +107,3 @@ if ($response['db'] === null) {
include '../app/templates/components.php';
}
?>

View File

@ -166,5 +166,3 @@ if ($response['db'] === null) {
include '../app/templates/conferences.php';
}
?>

View File

@ -97,4 +97,3 @@ if (!$isAjax) {
include '../app/templates/error-unauthorized.php';
}
}
?>

View File

@ -227,5 +227,3 @@ if ($response['db'] === null) {
include '../app/templates/widget.php';
}
?>

View File

@ -89,5 +89,3 @@ include '../app/helpers/feedback.php';
// Load the template
include '../app/templates/graphs.php';
?>

View File

@ -4,5 +4,3 @@
include '../app/helpers/feedback.php';
include '../app/templates/help.php';
?>

View File

@ -104,5 +104,3 @@ include '../app/helpers/feedback.php';
// Load the template
include '../app/templates/latest.php';
?>

View File

@ -14,5 +14,3 @@ include '../app/helpers/feedback.php';
// Load the template
include '../app/templates/livejs.php';
?>

View File

@ -140,5 +140,3 @@ include '../app/helpers/feedback.php';
// Load the template
include '../app/templates/form-login.php';
?>

View File

@ -70,7 +70,7 @@ if (isset($_REQUEST['tab'])) {
// prepare the result
$search = $logObject->readLog($user_id, $scope, $offset, $items_per_page, $filters);
$search_all = $logObject->readLog($user_id, $scope, '', '', $filters);
$search_all = $logObject->readLog($user_id, $scope, 0, 0, $filters);
if (!empty($search)) {
// we get total items and number of pages
@ -107,5 +107,3 @@ $username = $userObject->getUserDetails($user_id)[0]['username'];
// Load the template
include '../app/templates/logs.php';
?>

View File

@ -176,5 +176,3 @@ if ($response['db'] === null) {
include '../app/templates/participants.php';
}
?>

View File

@ -159,5 +159,3 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
include '../app/templates/profile.php';
}
}
?>

View File

@ -96,5 +96,3 @@ if ($config['registration_enabled'] == true) {
} else {
echo Feedback::render('NOTICE', 'DEFAULT', 'Registration is disabled', false);
}
?>

View File

@ -177,5 +177,3 @@ include '../app/helpers/feedback.php';
// Load the template
include '../app/templates/security.php';
?>

View File

@ -79,5 +79,3 @@ foreach ($platformsAll as $platform) {
echo "\n\t\t\t\t\t\t</div>";
echo "\n\t\t\t\t\t</div>";
echo "\n\t\t\t\t</div>";
?>

View File

@ -241,5 +241,3 @@ ob_end_flush();
// clear errors and notices before next page just in case
unset($_SESSION['error']);
unset($_SESSION['notice']);
?>