diff --git a/htdocs/admin/commande.php b/htdocs/admin/commande.php
index 455175220a8..40514cd1890 100644
--- a/htdocs/admin/commande.php
+++ b/htdocs/admin/commande.php
@@ -438,7 +438,6 @@ foreach ($dirmodels as $reldir)
if ($modulequalified)
{
- $var = !$var;
print '
| ';
print (empty($module->name)?$name:$module->name);
print " | \n";
diff --git a/htdocs/asset/info.php b/htdocs/asset/info.php
index 462abf17342..45157e9b7a5 100644
--- a/htdocs/asset/info.php
+++ b/htdocs/asset/info.php
@@ -44,15 +44,18 @@ $object->fetch($id);
* Actions
*/
+
+
/*
* View
*/
+
+$form = new Form($db);
+
$title = $langs->trans('Asset') . " - " . $langs->trans('Info');
$helpurl = "";
llxHeader('', $title, $helpurl);
-$form = new Form($db);
-
$object->info($id);
$head = asset_prepare_head($object);
diff --git a/htdocs/core/class/fiscalyear.class.php b/htdocs/core/class/fiscalyear.class.php
index 5593b4a90a4..90d824b7263 100644
--- a/htdocs/core/class/fiscalyear.class.php
+++ b/htdocs/core/class/fiscalyear.class.php
@@ -63,28 +63,28 @@ class Fiscalyear extends CommonObject
* @var string fiscal year label
*/
public $label;
-
+
/**
* Date start (date_start)
*
* @var integer
*/
public $date_start;
-
+
/**
* Date end (date_end)
*
* @var integer
*/
public $date_end;
-
+
/**
* Date creation record (datec)
*
* @var integer
*/
public $datec;
-
+
public $statut; // 0=open, 1=closed
/**
diff --git a/htdocs/cron/class/cronjob.class.php b/htdocs/cron/class/cronjob.class.php
index 7934a628880..0e12da80cfc 100644
--- a/htdocs/cron/class/cronjob.class.php
+++ b/htdocs/cron/class/cronjob.class.php
@@ -894,14 +894,15 @@ class Cronjob extends CommonObject
/**
* Load object information
*
- * @return int
+ * @param int $id ID
+ * @return int <0 if KO, >0 if OK
*/
- public function info()
+ public function info($id)
{
$sql = "SELECT";
$sql.= " f.rowid, f.datec, f.tms, f.fk_user_mod, f.fk_user_author";
$sql.= " FROM ".MAIN_DB_PREFIX."cronjob as f";
- $sql.= " WHERE f.rowid = ".$this->id;
+ $sql.= " WHERE f.rowid = ".$id;
dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
$resql=$this->db->query($sql);
|