Completed
Branch develop (8d86f5)
by
unknown
19:44
created
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.
htdocs/install/step1.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,8 +97,9 @@
 block discarded – undo
97 97
 			$main_data_dir = $argv[4]; // override when executing the script in command line
98 98
 		}
99 99
 		// In mode 3 the main_url is custom
100
-		if ($force_install_noedit != 3)
101
-		$main_url = detect_dolibarr_main_url_root();
100
+		if ($force_install_noedit != 3) {
101
+				$main_url = detect_dolibarr_main_url_root();
102
+		}
102 103
 		if (!empty($argv[5])) {
103 104
 			$main_url = $argv[5]; // override when executing the script in command line
104 105
 		}
Please login to merge, or discard this patch.
htdocs/accountancy/class/lettering.class.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -316,11 +316,15 @@
 block discarded – undo
316 316
 		$resql = $this->db->query($sql);
317 317
 		if ($resql) {
318 318
 			while ($obj = $this->db->fetch_object($resql)) {
319
-				if (empty($obj->lettering_code)) continue;
319
+				if (empty($obj->lettering_code)) {
320
+					continue;
321
+				}
320 322
 
321 323
 				// Remove normal lettering code if set partial lettering
322 324
 				if ($partial && preg_match('/^[A-Z]+$/', $obj->lettering_code)) {
323
-					if (!empty($obj->bookkeeping_ids)) $ids = array_diff($ids, explode(',', $obj->bookkeeping_ids));
325
+					if (!empty($obj->bookkeeping_ids)) {
326
+						$ids = array_diff($ids, explode(',', $obj->bookkeeping_ids));
327
+					}
324 328
 				} elseif (!$partial && preg_match('/^[a-z]+$/', $obj->lettering_code)) {
325 329
 					// Delete partial lettering code if set normal lettering
326 330
 					$sql2 = "UPDATE " . MAIN_DB_PREFIX . "accounting_bookkeeping SET";
Please login to merge, or discard this patch.
htdocs/core/class/commonorder.class.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,9 @@
 block discarded – undo
87 87
 				$return ++;
88 88
 			} elseif ((int) $line->fk_product > 0) {
89 89
 				if ($product->fetch($line->fk_product) > 0) {
90
-					if ($product->status_buy) $return ++;
90
+					if ($product->status_buy) {
91
+						$return ++;
92
+					}
91 93
 				}
92 94
 			}
93 95
 		}
Please login to merge, or discard this patch.
htdocs/core/modules/facture/doc/pdf_octopus.modules.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3548,7 +3548,9 @@  discard block
 block discarded – undo
3548 3548
 			$deja_regle = $invoice->getSommePaiement();
3549 3549
 
3550 3550
 			$resteapayer = price2num($invoice->total_ttc - $deja_regle - $total_ttc_rg - $creditnoteamount - $depositsamount, 'MT');
3551
-			if ($invoice->paye) $resteapayer = 0;
3551
+			if ($invoice->paye) {
3552
+				$resteapayer = 0;
3553
+			}
3552 3554
 
3553 3555
 			$y = 0;
3554 3556
 
@@ -3598,7 +3600,9 @@  discard block
 block discarded – undo
3598 3600
 
3599 3601
 			if ($deja_regle > 0) {
3600 3602
 				$title=$outputlangs->transnoentities("PaymentsAlreadyDone");
3601
-				if ($invoice->type == 2) $title=$outputlangs->transnoentities("PaymentsBackAlreadyDone");
3603
+				if ($invoice->type == 2) {
3604
+					$title=$outputlangs->transnoentities("PaymentsBackAlreadyDone");
3605
+				}
3602 3606
 
3603 3607
 				$pdf->SetFont('', '', $default_font_size - 3);
3604 3608
 				$pdf->SetXY($posx, $posy + $height * $index);
@@ -3661,7 +3665,9 @@  discard block
 block discarded – undo
3661 3665
 				if (!empty($this->tplidx)) {
3662 3666
 					$pdf->useTemplate($this->tplidx);
3663 3667
 				}
3664
-				if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) $this->_pagehead($pdf, $object, 0, $outputlangs);
3668
+				if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
3669
+					$this->_pagehead($pdf, $object, 0, $outputlangs);
3670
+				}
3665 3671
 				$pdf->setPage($pageposafter+1);
3666 3672
 				$pdf->setPageOrientation('', 1, 0);	// The only function to edit the bottom margin of current page to set it.
3667 3673
 
Please login to merge, or discard this patch.