Passed
Push — GENERAL_BUG_REVIEW_240911 ( 8cbbee...d4fdcf )
by Rafael
64:20
created
public/htdocs/projet/tasks/note.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
 
120 120
 $title = $object->ref . ' - ' . $langs->trans("Notes");
121 121
 if (!empty($withproject)) {
122
-    $title .= ' | ' . $langs->trans("Project") . (!empty($projectstatic->ref) ? ': ' . $projectstatic->ref : '')  ;
122
+    $title .= ' | ' . $langs->trans("Project") . (!empty($projectstatic->ref) ? ': ' . $projectstatic->ref : '');
123 123
 }
124 124
 $help_url = '';
125 125
 
Please login to merge, or discard this patch.
public/htdocs/projet/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
155 155
     while ($i < $num) {
156 156
         $objp = $db->fetch_object($resql);
157 157
         $listofoppstatus[$objp->rowid] = $objp->percent;
158
-        $listofopplabel[$objp->rowid] = $objp->label;       // default label if translation from "OppStatus".code not found.
158
+        $listofopplabel[$objp->rowid] = $objp->label; // default label if translation from "OppStatus".code not found.
159 159
         $listofoppcode[$objp->rowid] = $objp->code;
160 160
         switch ($objp->code) {
161 161
             case 'PROSP':
Please login to merge, or discard this patch.
public/htdocs/projet/element.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -151,8 +151,8 @@
 block discarded – undo
151 151
 $id = GETPOSTINT('id');
152 152
 $ref = GETPOST('ref', 'alpha');
153 153
 $action = GETPOST('action', 'aZ09');
154
-$datesrfc = GETPOST('datesrfc');    // deprecated
155
-$dateerfc = GETPOST('dateerfc');    // deprecated
154
+$datesrfc = GETPOST('datesrfc'); // deprecated
155
+$dateerfc = GETPOST('dateerfc'); // deprecated
156 156
 $dates = dol_mktime(0, 0, 0, GETPOST('datesmonth'), GETPOST('datesday'), GETPOST('datesyear'));
157 157
 $datee = dol_mktime(23, 59, 59, GETPOST('dateemonth'), GETPOST('dateeday'), GETPOST('dateeyear'));
158 158
 if (empty($dates) && !empty($datesrfc)) {   // deprecated
Please login to merge, or discard this patch.
public/htdocs/contrat/card.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 $permissionnote = $user->hasRight('contrat', 'creer'); // Used by the include of actions_setnotes.inc.php
111 111
 $permissiondellink = $user->hasRight('contrat', 'creer'); // Used by the include of actions_dellink.inc.php
112 112
 $permissiontodelete = ($user->hasRight('contrat', 'creer') && $object->statut == $object::STATUS_DRAFT) || $user->hasRight('contrat', 'supprimer');
113
-$permissiontoadd   = $user->hasRight('contrat', 'creer');     //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
113
+$permissiontoadd   = $user->hasRight('contrat', 'creer'); //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
114 114
 $permissiontoedit = $permissiontoadd;
115 115
 $permissiontoactivate = $user->hasRight('contrat', 'activer');
116 116
 $error = 0;
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 
156 156
     include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php'; // Must be include, not include_once
157 157
 
158
-    include DOL_DOCUMENT_ROOT . '/core/actions_lineupdown.inc.php';  // Must be include, not include_once
158
+    include DOL_DOCUMENT_ROOT . '/core/actions_lineupdown.inc.php'; // Must be include, not include_once
159 159
 
160 160
     if ($action == 'confirm_active' && $confirm == 'yes' && $permissiontoactivate) {
161 161
         $date_start = '';
@@ -533,8 +533,8 @@  discard block
 block discarded – undo
533 533
                     $result = $prodcustprice->fetchAll('', '', 0, 0, $filter);
534 534
                     if ($result) {
535 535
                         if (count($prodcustprice->lines) > 0) {
536
-                            $price_min =  price($prodcustprice->lines[0]->price_min);
537
-                            $price_min_ttc =  price($prodcustprice->lines[0]->price_min_ttc);
536
+                            $price_min = price($prodcustprice->lines[0]->price_min);
537
+                            $price_min_ttc = price($prodcustprice->lines[0]->price_min_ttc);
538 538
                             /*$tva_tx = $prodcustprice->lines[0]->tva_tx;
539 539
                             if ($prodcustprice->lines[0]->default_vat_code && !preg_match('/\(.*\)/', $tva_tx)) {
540 540
                                 $tva_tx .= ' ('.$prodcustprice->lines[0]->default_vat_code.')';
@@ -711,7 +711,7 @@  discard block
 block discarded – undo
711 711
         if (!empty($date_start_update) && !empty($date_end_update) && $date_start_update > $date_end_update) {
712 712
             setEventMessages($langs->trans("Error") . ': ' . $langs->trans("DateStartPlanned") . ' > ' . $langs->trans("DateEndPlanned"), null, 'errors');
713 713
             $action = 'editline';
714
-            $_GET['rowid'] = GETPOST('elrowid');    // Keep $_GET here. Used by GETPOST('rowid') later
714
+            $_GET['rowid'] = GETPOST('elrowid'); // Keep $_GET here. Used by GETPOST('rowid') later
715 715
             $error++;
716 716
         }
717 717
 
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
             // update price_ht with discount
771 771
             // TODO Use object->updateline instead objectline->update
772 772
 
773
-            $price_ht =  price2num(GETPOST('elprice'), 'MU');
773
+            $price_ht = price2num(GETPOST('elprice'), 'MU');
774 774
             $remise_percent = price2num(GETPOST('elremise_percent'), '', 2);
775 775
             if ($remise_percent > 0) {
776 776
                 $remise = round(((float) $price_ht * (float) $remise_percent / 100), 2);
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
     } elseif ($action == 'confirm_activate' && $confirm == 'yes' && $user->hasRight('contrat', 'creer')) {
876 876
         $date_start = dol_mktime(12, 0, 0, GETPOST('d_startmonth'), GETPOST('d_startday'), GETPOST('d_startyear'));
877 877
         $date_end   = dol_mktime(12, 0, 0, GETPOST('d_endmonth'), GETPOST('d_endday'), GETPOST('d_endyear'));
878
-        $comment      = GETPOST('comment', 'alpha');
878
+        $comment = GETPOST('comment', 'alpha');
879 879
         $result = $object->activateAll($user, $date_start, 0, $comment, $date_end);
880 880
         if ($result < 0) {
881 881
             setEventMessages($object->error, $object->errors, 'errors');
@@ -1504,7 +1504,7 @@  discard block
 block discarded – undo
1504 1504
         }
1505 1505
 
1506 1506
 
1507
-        $arrayothercontracts = $object->getListOfContracts('others');   // array or -1 if technical error
1507
+        $arrayothercontracts = $object->getListOfContracts('others'); // array or -1 if technical error
1508 1508
 
1509 1509
         /*
1510 1510
          * Lines of contracts
Please login to merge, or discard this patch.
public/htdocs/contrat/services_list.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 
154 154
 $object->fields = dol_sort_array($object->fields, 'position');
155 155
 $arrayfields = dol_sort_array($arrayfields, 'position');
156
-'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields';  // dol_sort_array looses type for Phan
156
+'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields'; // dol_sort_array looses type for Phan
157 157
 
158 158
 $permissiontoread = $user->hasRight('contrat', 'lire');
159 159
 $permissiontoadd = $user->hasRight('contrat', 'creer');
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 }
574 574
 
575 575
 $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
576
-$htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN'));  // This also change content of $arrayfields with user setup
576
+$htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')); // This also change content of $arrayfields with user setup
577 577
 $selectedfields = ($mode != 'kanban' ? $htmlofselectarray : '');
578 578
 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
579 579
 
Please login to merge, or discard this patch.
public/htdocs/contrat/agenda.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
90 90
 $hookmanager->initHooks(array('agendacontract', 'globalcard'));
91 91
 
92
-$permissiontoadd = $user->hasRight('contrat', 'creer');     //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
92
+$permissiontoadd = $user->hasRight('contrat', 'creer'); //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
93 93
 
94 94
 $result = restrictedArea($user, 'contrat', $object->id);
95 95
 
Please login to merge, or discard this patch.
public/htdocs/contrat/contact.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
55 55
 $hookmanager->initHooks(array('contractcontactcard', 'globalcard'));
56 56
 
57
-$permissiontoadd   = $user->hasRight('contrat', 'creer');     //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
57
+$permissiontoadd = $user->hasRight('contrat', 'creer'); //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
58 58
 
59 59
 $result = restrictedArea($user, 'contrat', $object->id);
60 60
 
Please login to merge, or discard this patch.
public/htdocs/contrat/list.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 $search_date_endday = GETPOSTINT('search_date_endday');
86 86
 $search_date_endmonth = GETPOSTINT('search_date_endmonth');
87 87
 $search_date_endyear = GETPOSTINT('search_date_endyear');
88
-$search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear);   // Use tzserver
88
+$search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear); // Use tzserver
89 89
 $search_date_end = dol_mktime(23, 59, 59, $search_date_endmonth, $search_date_endday, $search_date_endyear);
90 90
 $searchCategoryCustomerOperator = 0;
91 91
 if (GETPOSTISSET('formfilteraction')) {
@@ -98,20 +98,20 @@  discard block
 block discarded – undo
98 98
 $search_date_creation_startmonth = GETPOSTINT('search_date_creation_startmonth');
99 99
 $search_date_creation_startyear = GETPOSTINT('search_date_creation_startyear');
100 100
 $search_date_creation_startday = GETPOSTINT('search_date_creation_startday');
101
-$search_date_creation_start = dol_mktime(0, 0, 0, $search_date_creation_startmonth, $search_date_creation_startday, $search_date_creation_startyear);   // Use tzserver
101
+$search_date_creation_start = dol_mktime(0, 0, 0, $search_date_creation_startmonth, $search_date_creation_startday, $search_date_creation_startyear); // Use tzserver
102 102
 $search_date_creation_endmonth = GETPOSTINT('search_date_creation_endmonth');
103 103
 $search_date_creation_endyear = GETPOSTINT('search_date_creation_endyear');
104 104
 $search_date_creation_endday = GETPOSTINT('search_date_creation_endday');
105
-$search_date_creation_end = dol_mktime(23, 59, 59, $search_date_creation_endmonth, $search_date_creation_endday, $search_date_creation_endyear);    // Use tzserver
105
+$search_date_creation_end = dol_mktime(23, 59, 59, $search_date_creation_endmonth, $search_date_creation_endday, $search_date_creation_endyear); // Use tzserver
106 106
 
107 107
 $search_date_modif_startmonth = GETPOSTINT('search_date_modif_startmonth');
108 108
 $search_date_modif_startyear = GETPOSTINT('search_date_modif_startyear');
109 109
 $search_date_modif_startday = GETPOSTINT('search_date_modif_startday');
110
-$search_date_modif_start = dol_mktime(0, 0, 0, $search_date_modif_startmonth, $search_date_modif_startday, $search_date_modif_startyear);   // Use tzserver
110
+$search_date_modif_start = dol_mktime(0, 0, 0, $search_date_modif_startmonth, $search_date_modif_startday, $search_date_modif_startyear); // Use tzserver
111 111
 $search_date_modif_endmonth = GETPOSTINT('search_date_modif_endmonth');
112 112
 $search_date_modif_endyear = GETPOSTINT('search_date_modif_endyear');
113 113
 $search_date_modif_endday = GETPOSTINT('search_date_modif_endday');
114
-$search_date_modif_end = dol_mktime(23, 59, 59, $search_date_modif_endmonth, $search_date_modif_endday, $search_date_modif_endyear);    // Use tzserver
114
+$search_date_modif_end = dol_mktime(23, 59, 59, $search_date_modif_endmonth, $search_date_modif_endday, $search_date_modif_endyear); // Use tzserver
115 115
 
116 116
 // Load variable for pagination
117 117
 $limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 
201 201
 $object->fields = dol_sort_array($object->fields, 'position');
202 202
 $arrayfields = dol_sort_array($arrayfields, 'position');
203
-'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields';  // dol_sort_array looses type for Phan
203
+'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields'; // dol_sort_array looses type for Phan
204 204
 
205 205
 if (!$user->hasRight('societe', 'client', 'voir')) {
206 206
     $search_sale = $user->id;
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
         $resql = $db->query($sql, 0, 'auto', 1);
535 535
         while ($db->fetch_object($resql)) {
536 536
             if (empty($nbtotalofrecords)) {
537
-                $nbtotalofrecords = 1;    // We can't make +1 because init value is ''
537
+                $nbtotalofrecords = 1; // We can't make +1 because init value is ''
538 538
             } else {
539 539
                 $nbtotalofrecords++;
540 540
             }
@@ -986,55 +986,55 @@  discard block
 block discarded – undo
986 986
 print '<tr class="liste_titre">';
987 987
 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
988 988
     print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
989
-    $totalarray['nbfield']++;   // For the column action
989
+    $totalarray['nbfield']++; // For the column action
990 990
 }
991 991
 if (!empty($arrayfields['c.ref']['checked'])) {
992 992
     print_liste_field_titre($arrayfields['c.ref']['label'], $_SERVER["PHP_SELF"], "c.ref", "", $param, '', $sortfield, $sortorder);
993
-    $totalarray['nbfield']++;   // For the column action
993
+    $totalarray['nbfield']++; // For the column action
994 994
 }
995 995
 if (!empty($arrayfields['c.ref_customer']['checked'])) {
996 996
     print_liste_field_titre($arrayfields['c.ref_customer']['label'], $_SERVER["PHP_SELF"], "c.ref_customer", "", $param, '', $sortfield, $sortorder);
997
-    $totalarray['nbfield']++;   // For the column action
997
+    $totalarray['nbfield']++; // For the column action
998 998
 }
999 999
 if (!empty($arrayfields['c.ref_supplier']['checked'])) {
1000 1000
     print_liste_field_titre($arrayfields['c.ref_supplier']['label'], $_SERVER["PHP_SELF"], "c.ref_supplier", "", $param, '', $sortfield, $sortorder);
1001
-    $totalarray['nbfield']++;   // For the column action
1001
+    $totalarray['nbfield']++; // For the column action
1002 1002
 }
1003 1003
 if (!empty($arrayfields['s.nom']['checked'])) {
1004 1004
     print_liste_field_titre($arrayfields['s.nom']['label'], $_SERVER["PHP_SELF"], "s.nom", "", $param, '', $sortfield, $sortorder);
1005
-    $totalarray['nbfield']++;   // For the column action
1005
+    $totalarray['nbfield']++; // For the column action
1006 1006
 }
1007 1007
 if (!empty($arrayfields['s.email']['checked'])) {
1008 1008
     print_liste_field_titre($arrayfields['s.email']['label'], $_SERVER["PHP_SELF"], "s.email", "", $param, '', $sortfield, $sortorder);
1009
-    $totalarray['nbfield']++;   // For the column action
1009
+    $totalarray['nbfield']++; // For the column action
1010 1010
 }
1011 1011
 if (!empty($arrayfields['s.town']['checked'])) {
1012 1012
     print_liste_field_titre($arrayfields['s.town']['label'], $_SERVER["PHP_SELF"], 's.town', '', $param, '', $sortfield, $sortorder);
1013
-    $totalarray['nbfield']++;   // For the column action
1013
+    $totalarray['nbfield']++; // For the column action
1014 1014
 }
1015 1015
 if (!empty($arrayfields['s.zip']['checked'])) {
1016 1016
     print_liste_field_titre($arrayfields['s.zip']['label'], $_SERVER["PHP_SELF"], 's.zip', '', $param, '', $sortfield, $sortorder);
1017
-    $totalarray['nbfield']++;   // For the column action
1017
+    $totalarray['nbfield']++; // For the column action
1018 1018
 }
1019 1019
 if (!empty($arrayfields['state.nom']['checked'])) {
1020 1020
     print_liste_field_titre($arrayfields['state.nom']['label'], $_SERVER["PHP_SELF"], "state.nom", "", $param, '', $sortfield, $sortorder);
1021
-    $totalarray['nbfield']++;   // For the column action
1021
+    $totalarray['nbfield']++; // For the column action
1022 1022
 }
1023 1023
 if (!empty($arrayfields['country.code_iso']['checked'])) {
1024 1024
     print_liste_field_titre($arrayfields['country.code_iso']['label'], $_SERVER["PHP_SELF"], "country.code_iso", "", $param, '', $sortfield, $sortorder, 'center ');
1025
-    $totalarray['nbfield']++;   // For the column action
1025
+    $totalarray['nbfield']++; // For the column action
1026 1026
 }
1027 1027
 if (!empty($arrayfields['typent.code']['checked'])) {
1028 1028
     print_liste_field_titre($arrayfields['typent.code']['label'], $_SERVER["PHP_SELF"], "typent.code", "", $param, '', $sortfield, $sortorder, 'center ');
1029
-    $totalarray['nbfield']++;   // For the column action
1029
+    $totalarray['nbfield']++; // For the column action
1030 1030
 }
1031 1031
 if (!empty($arrayfields['sale_representative']['checked'])) {
1032 1032
     print_liste_field_titre($arrayfields['sale_representative']['label'], $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder);
1033
-    $totalarray['nbfield']++;   // For the column action
1033
+    $totalarray['nbfield']++; // For the column action
1034 1034
 }
1035 1035
 if (!empty($arrayfields['c.date_contrat']['checked'])) {
1036 1036
     print_liste_field_titre($arrayfields['c.date_contrat']['label'], $_SERVER["PHP_SELF"], "c.date_contrat", "", $param, '', $sortfield, $sortorder, 'center ');
1037
-    $totalarray['nbfield']++;   // For the column action
1037
+    $totalarray['nbfield']++; // For the column action
1038 1038
 }
1039 1039
 // Extra fields
1040 1040
 include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_title.tpl.php';
@@ -1044,29 +1044,29 @@  discard block
 block discarded – undo
1044 1044
 print $hookmanager->resPrint;
1045 1045
 if (!empty($arrayfields['c.datec']['checked'])) {
1046 1046
     print_liste_field_titre($arrayfields['c.datec']['label'], $_SERVER["PHP_SELF"], "c.datec", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
1047
-    $totalarray['nbfield']++;   // For the column action
1047
+    $totalarray['nbfield']++; // For the column action
1048 1048
 }
1049 1049
 if (!empty($arrayfields['c.tms']['checked'])) {
1050 1050
     print_liste_field_titre($arrayfields['c.tms']['label'], $_SERVER["PHP_SELF"], "c.tms", "", $param, '', $sortfield, $sortorder, 'center nowrap ');
1051
-    $totalarray['nbfield']++;   // For the column action
1051
+    $totalarray['nbfield']++; // For the column action
1052 1052
 }
1053 1053
 if (!empty($arrayfields['lower_planned_end_date']['checked'])) {
1054 1054
     print_liste_field_titre($arrayfields['lower_planned_end_date']['label'], $_SERVER["PHP_SELF"], "lower_planned_end_date", "", $param, '', $sortfield, $sortorder, 'center ');
1055
-    $totalarray['nbfield']++;   // For the column action
1055
+    $totalarray['nbfield']++; // For the column action
1056 1056
 }
1057 1057
 if (!empty($arrayfields['status']['checked'])) {
1058 1058
     print_liste_field_titre($staticcontratligne->LibStatut(0, 3, -1, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
1059
-    $totalarray['nbfield']++;   // For the column action
1059
+    $totalarray['nbfield']++; // For the column action
1060 1060
     print_liste_field_titre($staticcontratligne->LibStatut(4, 3, 0, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
1061
-    $totalarray['nbfield']++;   // For the column action
1061
+    $totalarray['nbfield']++; // For the column action
1062 1062
     print_liste_field_titre($staticcontratligne->LibStatut(4, 3, 1, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
1063
-    $totalarray['nbfield']++;   // For the column action
1063
+    $totalarray['nbfield']++; // For the column action
1064 1064
     print_liste_field_titre($staticcontratligne->LibStatut(5, 3, -1, 'class="nochangebackground"'), '', '', '', '', 'width="16"');
1065
-    $totalarray['nbfield']++;   // For the column action
1065
+    $totalarray['nbfield']++; // For the column action
1066 1066
 }
1067 1067
 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
1068 1068
     print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
1069
-    $totalarray['nbfield']++;   // For the column action
1069
+    $totalarray['nbfield']++; // For the column action
1070 1070
 }
1071 1071
 print "</tr>\n";
1072 1072
 
@@ -1356,7 +1356,7 @@  discard block
 block discarded – undo
1356 1356
 
1357 1357
 // If no record found
1358 1358
 if ($num == 0) {
1359
-    $colspan = 4;   // Include the 4 columns of status
1359
+    $colspan = 4; // Include the 4 columns of status
1360 1360
     foreach ($arrayfields as $key => $val) {
1361 1361
         if (!empty($val['checked'])) {
1362 1362
             $colspan++;
Please login to merge, or discard this patch.
public/htdocs/contrat/note.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 $object = new Contrat($db);
54 54
 $object->fetch($id, $ref);
55 55
 
56
-$permissiontoadd   = $user->hasRight('contrat', 'creer');     //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
56
+$permissiontoadd = $user->hasRight('contrat', 'creer'); //  Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
57 57
 $permissionnote = $user->hasRight('contrat', 'creer'); // Used by the include of actions_setnotes.inc.php
58 58
 
59 59
 $result = restrictedArea($user, 'contrat', $object->id);
Please login to merge, or discard this patch.