Update element.php

This commit is contained in:
Laurent Destailleur 2019-09-27 12:36:15 +02:00 committed by GitHub
parent 2eaa910336
commit 34aa64bae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -512,9 +512,9 @@ if ($action=="addelement")
elseif ($action == "unlink")
{
$tablename = GETPOST("tablename");
$projectField = GETPOST("projectfield");
$elementselectid = GETPOST("elementselect");
$tablename = GETPOST("tablename", "aZ09");
$projectField = GETPOST("projectfield", "aZ09");
$elementselectid = GETPOST("elementselect", "int");
$result = $object->remove_element($tablename, $elementselectid, $projectField);
if ($result < 0)
@ -890,7 +890,7 @@ foreach ($listofreferent as $key => $value)
{
if (empty($conf->global->PROJECT_DISABLE_UNLINK_FROM_OVERVIEW) || $user->admin) // PROJECT_DISABLE_UNLINK_FROM_OVERVIEW is empty by defaut, so this test true
{
print sprintf('<a href="%s?id=%s&action=unlink&tablename=%s&elementselect=%s&projectfield=%s" class="reposition">', $_SERVER["PHP_SELF"], $projectid, $tablename, $element->id, $project_field?: 'fk_projet');
print '<a href="' . $_SERVER["PHP_SELF"] . '?id=' . $projectid . '&action=unlink&tablename=' . $tablename . '&elementselect=' . $element->id . ($project_field ? '&projectfield=' . $project_field : '') . " class="reposition">';
print img_picto($langs->trans('Unlink'), 'unlink');
print '</a>';
}