khanat-opennel-code/code/web/public_php/ring/send_plan_edit_session.php
Guillaume Dupuy 6f1197d633 Allow target to work with sheetName and a quiet option
HG : Enter commit message.  Lines beginning with 'HG:' are removed.
2016-11-28 00:54:33 +01:00

25 lines
635 B
PHP

<?php
include_once('../tools/validate_cookie.php');
include_once('ring_session_manager_itf.php');
include_once('../tools/domain_info.php');
include_once('../login/config.php');
include_once('session_tools.php');
///////////////////////////
// Main code
///////////////////////////
$domainId = -1;
if (!validateCookie($userId, $domainId, $charId))
{
echo "<h1>Invalid cookie, please relog<H1>";
die;
}
planEditSession($charId, $domainId, $_POST["session_type"], $_POST["title"], $_POST["description"]);
echo "Finish<br>";
echo '<a href="web_start.php">Return to start menu</a>';
?>