1
0
mirror of https://github.com/Mowie/Mowie synced 2024-06-02 17:09:39 +00:00
Mowie/admin/lang.php
kolaente 0a650ad38c * Included Language-Switcher
* Switched to Font-Awesome
* Fixes
2016-08-07 18:22:22 +02:00

10 lines
182 B
PHP

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