Skip to content
Snippets Groups Projects
Commit aae84246 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

Merge branch...

Merge branch 'hotline#34679_modification_d_un_titre_de_document_pdf_dans_l_explorateur_de_fichier' into 'stable'

Hotline#34679 modification d un titre de document pdf dans l explorateur de fichier

See merge request !1411
parents 11d62ac2 2bc7d9c0
Branches
Tags
6 merge requests!1553Master,!1502Master,!1501Stable,!1472Stable,!1417Master,!1416Hotline master
- ticket #34679 : Correction impossibilité de renommer un fichier l'explorateur de fichier
\ No newline at end of file
......@@ -33,6 +33,8 @@ function auth() {
$path = array_key_exists('path', $_GET) ? $_GET['path'] : '';
$path = array_key_exists('currentpath', $_POST) ? $_POST['currentpath'] : $path;
$path = array_key_exists('mode', $_GET) && 'rename' == $_GET['mode'] && array_key_exists('old', $_GET)
? $_GET['old'] : $path;
return (new Class_FileManager())->isAuthorized($path);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment