Fix phpcs

This commit is contained in:
Laurent Destailleur 2020-10-16 00:06:26 +02:00
parent 64b1a31e45
commit 5905d3be64
3 changed files with 6 additions and 4 deletions

View File

@ -763,7 +763,7 @@ class FormOther
}, },
function(color, context) { console.log("close"); }, function(color, context) { console.log("close"); },
function(color, context) { var hex = color.val(\'hex\'); console.log("new color selected in jpicker "+hex);'; function(color, context) { var hex = color.val(\'hex\'); console.log("new color selected in jpicker "+hex);';
if ($setpropertyonselect) { $out .= ' if (hex != null) document.documentElement.style.setProperty(\'--'.$setpropertyonselect.'\', \'#\'+hex);'; } if ($setpropertyonselect) { $out .= ' if (hex != null) document.documentElement.style.setProperty(\'--'.$setpropertyonselect.'\', \'#\'+hex);'; }
$out .= '}, $out .= '},
function(color, context) { console.log("cancel"); } function(color, context) { console.log("cancel"); }
); );

View File

@ -5653,8 +5653,9 @@ function dol_string_nohtmltag($stringtoclean, $removelinefeed = 1, $pagecodeto =
* Clean a string to keep only desirable HTML tags. * Clean a string to keep only desirable HTML tags.
* *
* @param string $stringtoclean String to clean * @param string $stringtoclean String to clean
* @param boolean $cleanalsosomestyles Remove absolute/fixed positioning from inline styles * @param int $cleanalsosomestyles Remove absolute/fixed positioning from inline styles
* @param boolean $removeclassattribute Remove the class attribute from tags * @param int $removeclassattribute Remove the class attribute from tags
* @param int $cleanalsojavascript Remove also occurence of (javascript:'
* @return string String cleaned * @return string String cleaned
* *
* @see dol_escape_htmltag() strip_tags() dol_string_nohtmltag() dol_string_neverthesehtmltags() * @see dol_escape_htmltag() strip_tags() dol_string_nohtmltag() dol_string_neverthesehtmltags()

View File

@ -428,6 +428,7 @@ class PaymentLoan extends CommonObject
return $this->LibStatut($this->statut, $mode); return $this->LibStatut($this->statut, $mode);
} }
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
/** /**
* Renvoi le libelle d'un statut donne * Renvoi le libelle d'un statut donne
* *
@ -437,7 +438,7 @@ class PaymentLoan extends CommonObject
*/ */
public function LibStatut($status, $mode = 0) public function LibStatut($status, $mode = 0)
{ {
// // phpcs:enable
return ''; return '';
} }