Completed
Branch develop (915363)
by
unknown
19:05
created
htdocs/ticket/card.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,7 +190,9 @@  discard block
 block discarded – undo
190 190
 
191 191
 	if (($action == 'add' || ($action == 'update' && $object->status < Ticket::STATUS_CLOSED)) && $permissiontoadd) {
192 192
 		$ifErrorAction = $action == 'add' ? 'create' : 'edit';
193
-		if ($action == 'add') $object->track_id = null;
193
+		if ($action == 'add') {
194
+			$object->track_id = null;
195
+		}
194 196
 		$error = 0;
195 197
 
196 198
 		$fieldsToCheck = [
@@ -342,7 +344,9 @@  discard block
 block discarded – undo
342 344
 				$db->rollback();
343 345
 				setEventMessages($object->error, $object->errors, 'errors');
344 346
 			}
345
-		} else $action = $ifErrorAction;
347
+		} else {
348
+			$action = $ifErrorAction;
349
+		}
346 350
 	}
347 351
 
348 352
 	// Mark as Read
Please login to merge, or discard this patch.
htdocs/core/class/html.formticket.class.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,9 @@
 block discarded – undo
234 234
 		print '<form method="POST" '.($withdolfichehead ? '' : 'style="margin-bottom: 30px;" ').'name="ticket" id="form_create_ticket" enctype="multipart/form-data" action="'.(!empty($this->param["returnurl"]) ? $this->param["returnurl"] : $_SERVER['PHP_SELF']).'">';
235 235
 		print '<input type="hidden" name="token" value="'.newToken().'">';
236 236
 		print '<input type="hidden" name="action" value="'.$this->action.'">';
237
-		if (!empty($object->id)) print '<input type="hidden" name="id" value="'. $object->id .'">';
237
+		if (!empty($object->id)) {
238
+			print '<input type="hidden" name="id" value="'. $object->id .'">';
239
+		}
238 240
 		print '<input type="hidden" name="trackid" value="'.$this->trackid.'">';
239 241
 		foreach ($this->param as $key => $value) {
240 242
 			print '<input type="hidden" name="'.$key.'" value="'.$value.'">';
Please login to merge, or discard this patch.
htdocs/core/class/doleditor.class.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,9 @@
 block discarded – undo
108 108
 					break;
109 109
 				}
110 110
 			}
111
-			if ($posy != 0 ) $poscursor['y'] = $posy;
111
+			if ($posy != 0 ) {
112
+				$poscursor['y'] = $posy;
113
+			}
112 114
 		}
113 115
 
114 116
 		// Define some properties
Please login to merge, or discard this patch.
htdocs/core/modules/DolibarrModules.class.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2660,6 +2660,8 @@
 block discarded – undo
2660 2660
 				$this->dictionaries['tab'.$field][] = $dictionaryArray[$field];
2661 2661
 			}
2662 2662
 		}
2663
-		if ($langs && !in_array($langs, $this->dictionaries[$langs])) $this->dictionaries['langs'][] = $langs;
2663
+		if ($langs && !in_array($langs, $this->dictionaries[$langs])) {
2664
+			$this->dictionaries['langs'][] = $langs;
2665
+		}
2664 2666
 	}
2665 2667
 }
Please login to merge, or discard this patch.
htdocs/expedition/list.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -441,8 +441,10 @@
 block discarded – undo
441 441
 							);
442 442
 							if ($result > 0) {
443 443
 								$lineid = $result;
444
-								if (!empty($createbills_onebythird)) //increment rang to keep sending
444
+								if (!empty($createbills_onebythird)) {
445
+									//increment rang to keep sending
445 446
 									$TFactThirdNbLines[$expd->socid]++;
447
+								}
446 448
 							} else {
447 449
 								$lineid = 0;
448 450
 								$error++;
Please login to merge, or discard this patch.
htdocs/expedition/card.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1429,7 +1429,9 @@
 block discarded – undo
1429 1429
 										$deliverableQty = min($quantityToBeDelivered, $batchStock);
1430 1430
 									}
1431 1431
 
1432
-									if ($deliverableQty < 0) $deliverableQty = 0;
1432
+									if ($deliverableQty < 0) {
1433
+										$deliverableQty = 0;
1434
+									}
1433 1435
 
1434 1436
 									$inputName = 'qtyl'.$indiceAsked.'_'.$subj;
1435 1437
 									if (GETPOSTISSET($inputName)) {
Please login to merge, or discard this patch.