mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
16 lines
244 B
PHP
16 lines
244 B
PHP
<?php
|
|
require_once './config.php';
|
|
|
|
// 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);
|
|
}
|
|
|