Impossibilité d'upload avec token (pb d'username)

This commit is contained in:
xdrm-brackets 2016-04-21 11:34:45 +02:00
parent a1b5f1c576
commit 46bfb58b9c
2 changed files with 7 additions and 3 deletions

View File

@ -20,7 +20,7 @@
/* AUTOLOADER
*
* @className<String> Nom de la classe appelee
@ -40,7 +40,7 @@
require_once $path; // on inclue le fichier
}
// On definit l'autoloader comme autoloader (obvious)
spl_autoload_register('autoloader', false, true);
@ -61,4 +61,4 @@
/* (2) Retourne si l'utilisateur a le status en question */
function permission($type){ return connected() && in_array($type, $_SESSION['permission']); }
?>
?>

View File

@ -19,6 +19,10 @@
*
*/
private static function simpleFile($prefix, $extension, $file){
// Si on est pas connecté, on retourne une erreur -> impossible via token
if( !connected() ) return ManagerError::PermissionError;
/* [0] On formatte les entrées
=========================================================*/
$prefix = htmlspecialchars($prefix);