1
0
mirror of https://github.com/Mowie/Mowie synced 2024-06-04 18:09:38 +00:00
Mowie/admin/lang.php
2017-04-29 19:25:18 +02:00

10 lines
182 B
PHP
Executable File

<?php
session_name('adminsession');
session_start();
require_once '../inc/config.php';
if(isset($_GET['set']))
{
setcookie ('lang', $_GET['set'], time()+5184000, '/');
echo '1';
}