Skip to content
Snippets Groups Projects
Commit e8addcb8 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fixed: [ bug #1756 ] PHP error while removing an import profile

parent e6d2bc0b
Branches
Tags
No related merge requests found
......@@ -47,7 +47,8 @@ if (empty($reshook) && ! empty($extrafields->attribute_label))
{
print '<tr><td>';
print '<table width="100%" class="nobordernopadding"><tr><td';
if (! empty($extrafields->attribute_required [$key])) print ' class="fieldrequired"';
//var_dump($action);exit;
if ((! empty($action) && $action != 'view') && ! empty($extrafields->attribute_required[$key])) print ' class="fieldrequired"';
print '>' . $label . '</td>';
//TODO Improve element and rights detection
......
......@@ -22,8 +22,7 @@
*/
/**
* \class Import
* \brief Class to manage imports
* Class to manage imports
*/
class Import
{
......@@ -313,10 +312,12 @@ class Import
{
if (! $notrigger)
{
/* Not used. This is not a business object. To convert it we must herit from CommonObject
// Call trigger
$result=$this->call_trigger('IMPORT_DELETE',$user);
if ($result < 0) $error++;
// End call triggers
*/
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment