mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-06-30 23:05:29 +00:00
22 lines
337 B
PHP
22 lines
337 B
PHP
<?php
|
|
|
|
include ("../core/config/main.php");
|
|
include ("saveGraphHelpers.php");
|
|
|
|
$name = $_GET["name"];
|
|
|
|
if (isValidName($name) && isAutoSave($name))
|
|
{
|
|
$xmlFileName = getXMLFileName($name);
|
|
if (file_exists($xmlFileName))
|
|
{
|
|
unlink($xmlFileName);
|
|
}
|
|
echo ("OK");
|
|
}
|
|
else
|
|
{
|
|
echo ("Error");
|
|
}
|
|
?>
|