mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 00:01:28 +00:00
24fa162413
[ci skip] [skip ci]
18 lines
328 B
PHP
18 lines
328 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
|
|
|
|
use nntmux\Sites;
|
|
|
|
// login check
|
|
$admin = new AdminPage;
|
|
$s = new Sites();
|
|
|
|
if (isset($_GET['action'])) {
|
|
if ($_GET['action'] == '1') {
|
|
$s->updateItem('showadminwelcome', 1);
|
|
} else {
|
|
$s->updateItem('showadminwelcome', 0);
|
|
}
|
|
}
|