34 lines
728 B
PHP
Executable File
34 lines
728 B
PHP
Executable File
<?php
|
|
/**
|
|
* Vue retournant les résultats d'une tentative de téléchargement ou de suppression de l'illustration d'un hub pour un administrateur
|
|
* S'affiche dans une frame, invisible si javascript actif.
|
|
*
|
|
**/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="fr-fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<head>
|
|
<title>Frame téléchargement illustration.</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
$msg="";
|
|
if(!empty($msg_form))
|
|
{
|
|
foreach($msg_form as $message)
|
|
echo "<h4>$message</h4>";
|
|
if($msg_form[0]==MSG_ADMIN_VALID)
|
|
$msg=str_replace("\"","'",MSG_ADMIN_VALID);
|
|
else
|
|
$msg=str_replace("\"","'",get_html_alerte_msg($msg_form));
|
|
}
|
|
?>
|
|
</body>
|
|
<script type="text/javascript">
|
|
<!--
|
|
window.top.window.msg_telechargement("<?=$msg;?>");
|
|
//-->
|
|
</script>
|
|
</html>
|