diff --git a/htdocs/core/lib/project.lib.php b/htdocs/core/lib/project.lib.php
index 8fef0916ff8..79e5e4f8dcc 100644
--- a/htdocs/core/lib/project.lib.php
+++ b/htdocs/core/lib/project.lib.php
@@ -2554,7 +2554,7 @@ function print_projecttasks_array($db, $form, $socid, $projectsListId, $mytasks
$ponderated_opp_amount += price2num($opp_weighted_amount);
}
if ($objp->opp_amount) {
- print ''.price($objp->opp_amount, 0, '', 1, -1, 0, $conf->currency).'';
+ print ''.price($objp->opp_amount, 0, '', 1, -1, 0, $conf->currency).'';
}
print '';
}
diff --git a/htdocs/projet/tasks/list.php b/htdocs/projet/tasks/list.php
index 801c792cf7d..cb89a210e1e 100644
--- a/htdocs/projet/tasks/list.php
+++ b/htdocs/projet/tasks/list.php
@@ -128,26 +128,26 @@ if (empty($user->socid)) {
}
$arrayfields = array(
- 't.fk_task_parent'=>array('label'=>$langs->trans("RefTaskParent"), 'checked'=>0, 'position'=>70),
- 't.ref'=>array('label'=>$langs->trans("RefTask"), 'checked'=>1, 'position'=>80),
- 't.label'=>array('label'=>$langs->trans("LabelTask"), 'checked'=>1, 'position'=>80),
- 't.description'=>array('label'=>$langs->trans("Description"), 'checked'=>0, 'position'=>80),
- 't.dateo'=>array('label'=>$langs->trans("DateStart"), 'checked'=>1, 'position'=>100),
- 't.datee'=>array('label'=>$langs->trans("Deadline"), 'checked'=>1, 'position'=>101),
- 'p.ref'=>array('label'=>$langs->trans("ProjectRef"), 'checked'=>1),
- 'p.title'=>array('label'=>$langs->trans("ProjectLabel"), 'checked'=>0),
- 's.nom'=>array('label'=>$langs->trans("ThirdParty"), 'checked'=>0),
- 'p.fk_statut'=>array('label'=>$langs->trans("ProjectStatus"), 'checked'=>1),
- 't.planned_workload'=>array('label'=>$langs->trans("PlannedWorkload"), 'checked'=>1, 'position'=>102),
- 't.duration_effective'=>array('label'=>$langs->trans("TimeSpent"), 'checked'=>1, 'position'=>103),
- 't.progress_calculated'=>array('label'=>$langs->trans("ProgressCalculated"), 'checked'=>1, 'position'=>104),
- 't.progress'=>array('label'=>$langs->trans("ProgressDeclared"), 'checked'=>1, 'position'=>105),
- 't.progress_summary'=>array('label'=>$langs->trans("TaskProgressSummary"), 'checked'=>1, 'position'=>106),
- 't.tobill'=>array('label'=>$langs->trans("TimeToBill"), 'checked'=>0, 'position'=>110),
- 't.billed'=>array('label'=>$langs->trans("TimeBilled"), 'checked'=>0, 'position'=>111),
- 't.datec'=>array('label'=>$langs->trans("DateCreation"), 'checked'=>0, 'position'=>500),
- 't.tms'=>array('label'=>$langs->trans("DateModificationShort"), 'checked'=>0, 'position'=>500),
- //'t.fk_statut'=>array('label'=>$langs->trans("Status"), 'checked'=>1, 'position'=>1000),
+ 't.fk_task_parent'=>array('label'=>"RefTaskParent", 'checked'=>0, 'position'=>70),
+ 't.ref'=>array('label'=>"RefTask", 'checked'=>1, 'position'=>80),
+ 't.label'=>array('label'=>"LabelTask", 'checked'=>1, 'position'=>80),
+ 't.description'=>array('label'=>"Description", 'checked'=>0, 'position'=>80),
+ 't.dateo'=>array('label'=>"DateStart", 'checked'=>1, 'position'=>100),
+ 't.datee'=>array('label'=>"Deadline", 'checked'=>1, 'position'=>101),
+ 'p.ref'=>array('label'=>"ProjectRef", 'checked'=>1),
+ 'p.title'=>array('label'=>"ProjectLabel", 'checked'=>0),
+ 's.nom'=>array('label'=>"ThirdParty", 'checked'=>0),
+ 'p.fk_statut'=>array('label'=>"ProjectStatus", 'checked'=>1),
+ 't.planned_workload'=>array('label'=>"PlannedWorkload", 'checked'=>1, 'position'=>102),
+ 't.duration_effective'=>array('label'=>"TimeSpent", 'checked'=>1, 'position'=>103),
+ 't.progress_calculated'=>array('label'=>"ProgressCalculated", 'checked'=>1, 'position'=>104),
+ 't.progress'=>array('label'=>"ProgressDeclared", 'checked'=>1, 'position'=>105),
+ 't.progress_summary'=>array('label'=>"TaskProgressSummary", 'checked'=>1, 'position'=>106),
+ 't.tobill'=>array('label'=>"TimeToBill", 'checked'=>0, 'position'=>110),
+ 't.billed'=>array('label'=>"TimeBilled", 'checked'=>0, 'position'=>111),
+ 't.datec'=>array('label'=>"DateCreation", 'checked'=>0, 'position'=>500),
+ 't.tms'=>array('label'=>"DateModificationShort", 'checked'=>0, 'position'=>500),
+ //'t.fk_statut'=>array('label'=>"Status", 'checked'=>1, 'position'=>1000),
);
// Extra fields
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';