Remove option to convert without checking validity

pcs-errors:226 phpunit-status:successful
This commit is contained in:
2020-07-21 23:48:39 +02:00
committed by Stefan Rohde-Enslin
parent 4db3c1ba9c
commit f96b10748a
4 changed files with 380 additions and 491 deletions

View File

@ -27,20 +27,4 @@ if(!move_uploaded_file($_FILES['uploaded']['tmp_name'], $target)) {
return;
}
echo printHTMLHead();
echo "
<div>
<p>The file has been uploaded: <b>" . basename( $_FILES['uploaded']['name']) . "</b>.</p>
<hr />
<h3>How to proceed?</h3>
<ul class='actionList'>
<li><a href='index4.php?fnam=" . basename( $_FILES['uploaded']['name']) . "'>Create XML (utf-8)</a></li>
<li><a href='index3.php?fnam=" . basename( $_FILES['uploaded']['name']) . "'>Check validity for museum-digital import</a></li>
</ul>
</div>
</body>
</html>
";
header("Location: index3.php?fnam=" . basename($_FILES['uploaded']['name']));