Skip to content
Snippets Groups Projects
Commit cd5b074a authored by Marcos García de La Fuente's avatar Marcos García de La Fuente
Browse files

FIX #6621 Documents tab shows greyed out upload form even if the option to...

FIX #6621 Documents tab shows greyed out upload form even if the option to show actions not available is disabled
parent 90a90e1a
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,11 @@ class FormFile
}
else
{
//If there is no permission and the option to hide unauthorized actions is enabled, then nothing is printed
if (!$perm && !empty($conf->global->MAIN_BUTTON_HIDE_UNAUTHORIZED)) {
return 1;
}
$maxlength=$size;
$out = "\n\n<!-- Start form attach new file -->\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment