Fix scrutinizer issues
This commit is contained in:
parent
248a359ac9
commit
4ad0d5df43
@ -258,9 +258,10 @@ class Subscription extends CommonObject
|
||||
* Return clicable name (with picto eventually)
|
||||
*
|
||||
* @param int $withpicto 0=No picto, 1=Include picto into link, 2=Only picto
|
||||
* @param int $notooltip 1=Disable tooltip
|
||||
* @return string Chaine avec URL
|
||||
*/
|
||||
function getNomUrl($withpicto=0)
|
||||
function getNomUrl($withpicto=0, $notooltip=0)
|
||||
{
|
||||
global $langs;
|
||||
|
||||
|
||||
@ -450,7 +450,6 @@ class Contracts extends DolibarrApi
|
||||
throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
|
||||
}
|
||||
|
||||
$request_data = (object) $request_data;
|
||||
$updateRes = $this->contract->deleteline($lineid, DolibarrApiAccess::$user);
|
||||
if ($updateRes > 0) {
|
||||
return $this->get($id);
|
||||
|
||||
@ -817,6 +817,8 @@ class ExtraFields
|
||||
$form=new Form($this->db);
|
||||
}
|
||||
|
||||
$out='';
|
||||
|
||||
$keyprefix = $keyprefix.'options_'; // Because we work on extrafields
|
||||
|
||||
$label=$this->attribute_label[$key];
|
||||
|
||||
@ -1061,7 +1061,7 @@ class Cronjob extends CommonObject
|
||||
|
||||
// Execute a CLI
|
||||
include_once DOL_DOCUMENT_ROOT.'/core/class/utils.class.php';
|
||||
$utils = new Utils($db);
|
||||
$utils = new Utils($this->db);
|
||||
$arrayresult = $utils->executeCLI($this->command, $outputfile);
|
||||
|
||||
$retval = $arrayresult['result'];
|
||||
|
||||
@ -842,9 +842,10 @@ class Don extends CommonObject
|
||||
* Return clicable name (with picto eventually)
|
||||
*
|
||||
* @param int $withpicto 0=No picto, 1=Include picto into link, 2=Only picto
|
||||
* @param int $notooltip 1=Disable tooltip
|
||||
* @return string Chaine avec URL
|
||||
*/
|
||||
function getNomUrl($withpicto=0)
|
||||
function getNomUrl($withpicto=0, $notooltip=0)
|
||||
{
|
||||
global $langs;
|
||||
|
||||
|
||||
@ -59,6 +59,7 @@ class FormEcm
|
||||
|
||||
if ($select_name=='') $select_name="catParent";
|
||||
|
||||
$cate_arbo=null;
|
||||
if ($module == 'ecm')
|
||||
{
|
||||
$cat = new EcmDirectory($this->db);
|
||||
|
||||
@ -927,9 +927,10 @@ class Dolresource extends CommonObject
|
||||
* @param int $withpicto Add picto into link
|
||||
* @param string $option Where point the link ('compta', 'expedition', 'document', ...)
|
||||
* @param string $get_params Parametres added to url
|
||||
* @param int $notooltip 1=Disable tooltip
|
||||
* @return string String with URL
|
||||
*/
|
||||
function getNomUrl($withpicto=0,$option='', $get_params='')
|
||||
function getNomUrl($withpicto=0,$option='', $get_params='', $notooltip=0)
|
||||
{
|
||||
global $langs;
|
||||
|
||||
|
||||
@ -38,7 +38,7 @@ class Supplierproposals extends DolibarrApi
|
||||
);
|
||||
|
||||
/**
|
||||
* @var supplier_proposal $supplier_proposal {@type supplier_proposal}
|
||||
* @var SupplierProposal $supplier_proposal {@type SupplierProposal}
|
||||
*/
|
||||
public $supplier_proposal;
|
||||
|
||||
@ -149,6 +149,7 @@ class Supplierproposals extends DolibarrApi
|
||||
{
|
||||
$num = $db->num_rows($result);
|
||||
$min = min($num, ($limit <= 0 ? $num : $limit));
|
||||
$i=0;
|
||||
while ($i < $min)
|
||||
{
|
||||
$obj = $db->fetch_object($result);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user