mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2025-04-22 11:33:26 +00:00
10 lines
159 B
PHP
Executable file
10 lines
159 B
PHP
Executable file
<?php
|
|
|
|
if (session_status() == PHP_SESSION_NONE) {
|
|
session_start();
|
|
}
|
|
|
|
if (!isset($_SESSION['lastActivity'])) {
|
|
$_SESSION['lastActivity'] = time();
|
|
}
|
|
|