Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
parent
f9e99e93c3
commit
aab2799981
@ -77,7 +77,7 @@ if ($action == 'update')
|
||||
llxHeader();
|
||||
|
||||
$form = new Form($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = New FormAccounting($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = new FormAccounting($db);
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print load_fiche_titre($langs->trans('ConfigLoan'),$linkback,'title_setup');
|
||||
|
||||
@ -113,7 +113,7 @@ if ($action == 'update') {
|
||||
|
||||
llxHeader();
|
||||
$form=new Form($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = New FormAccounting($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = new FormAccounting($db);
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print load_fiche_titre($langs->trans('TaxSetup'),$linkback,'title_setup');
|
||||
|
||||
@ -133,7 +133,7 @@ function run_sql($sqlfile,$silent=1,$entity='',$usesavepoint=1,$handler='',$oker
|
||||
$error=0;
|
||||
$i=0;
|
||||
$buffer = '';
|
||||
$arraysql = Array();
|
||||
$arraysql = array();
|
||||
|
||||
// Get version of database
|
||||
$versionarray=$db->getVersionArray();
|
||||
|
||||
@ -27,9 +27,9 @@
|
||||
/* ******************************************************************** */
|
||||
/* COLORS */
|
||||
/* ******************************************************************** */
|
||||
$bar_color=Array(0,0,0);
|
||||
$bg_color=Array(255,255,255);
|
||||
$text_color=Array(0,0,0);
|
||||
$bar_color=array(0,0,0);
|
||||
$bg_color=array(255,255,255);
|
||||
$text_color=array(0,0,0);
|
||||
|
||||
|
||||
/* ******************************************************************** */
|
||||
|
||||
@ -356,20 +356,20 @@ function utf82utf16($utf8)
|
||||
}
|
||||
|
||||
switch(strlen($utf8)) {
|
||||
case 1:
|
||||
// this case should never be reached, because we are in ASCII range
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return $utf8;
|
||||
case 1:
|
||||
// this case should never be reached, because we are in ASCII range
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return $utf8;
|
||||
|
||||
case 2:
|
||||
// return a UTF-16 character from a 2-byte UTF-8 char
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr(0x07 & (ord($utf8{0}) >> 2)) . chr((0xC0 & (ord($utf8{0}) << 6)) | (0x3F & ord($utf8{1})));
|
||||
case 2:
|
||||
// return a UTF-16 character from a 2-byte UTF-8 char
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr(0x07 & (ord($utf8{0}) >> 2)) . chr((0xC0 & (ord($utf8{0}) << 6)) | (0x3F & ord($utf8{1})));
|
||||
|
||||
case 3:
|
||||
// return a UTF-16 character from a 3-byte UTF-8 char
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr((0xF0 & (ord($utf8{0}) << 4)) | (0x0F & (ord($utf8{1}) >> 2))) . chr((0xC0 & (ord($utf8{1}) << 6)) | (0x7F & ord($utf8{2})));
|
||||
case 3:
|
||||
// return a UTF-16 character from a 3-byte UTF-8 char
|
||||
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
|
||||
return chr((0xF0 & (ord($utf8{0}) << 4)) | (0x0F & (ord($utf8{1}) >> 2))) . chr((0xC0 & (ord($utf8{1}) << 6)) | (0x7F & ord($utf8{2})));
|
||||
}
|
||||
|
||||
// ignoring UTF-32 for now, sorry
|
||||
|
||||
@ -201,7 +201,7 @@ else if ($action == 'setart885') {
|
||||
|
||||
$dir = "../../core/modules/dons/";
|
||||
$form=new Form($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = New FormAccounting($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = new FormAccounting($db);
|
||||
|
||||
llxHeader('',$langs->trans("DonationsSetup"),'DonConfiguration');
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
|
||||
@ -848,7 +848,7 @@ llxHeader('', $title, $helpurl);
|
||||
$form = new Form($db);
|
||||
$formfile = new FormFile($db);
|
||||
$formproduct = new FormProduct($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = New FormAccounting($db);
|
||||
if (! empty($conf->accounting->enabled)) $formaccounting = new FormAccounting($db);
|
||||
|
||||
// Load object modBarCodeProduct
|
||||
$res=0;
|
||||
|
||||
@ -3585,15 +3585,15 @@ class Product extends CommonObject
|
||||
{
|
||||
switch ($type)
|
||||
{
|
||||
case 0:
|
||||
return $this->LibStatut($this->status,$mode,$type);
|
||||
case 1:
|
||||
return $this->LibStatut($this->status_buy,$mode,$type);
|
||||
case 2:
|
||||
return $this->LibStatut($this->status_batch,$mode,$type);
|
||||
default:
|
||||
//Simulate previous behavior but should return an error string
|
||||
return $this->LibStatut($this->status_buy,$mode,$type);
|
||||
case 0:
|
||||
return $this->LibStatut($this->status,$mode,$type);
|
||||
case 1:
|
||||
return $this->LibStatut($this->status_buy,$mode,$type);
|
||||
case 2:
|
||||
return $this->LibStatut($this->status_batch,$mode,$type);
|
||||
default:
|
||||
//Simulate previous behavior but should return an error string
|
||||
return $this->LibStatut($this->status_buy,$mode,$type);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user