Files
newznab-tmux/www/admin/ajax_welcome_msg.php
T
2015-10-21 10:36:53 +02:00

19 lines
265 B
PHP

<?php
require_once './config.php';
use newznab\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);
}