Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /cmsms/modules/Download/Download.module.php on line 70
Je ne peux donc plus désinstaller le module ou revenir à ma configuration précédente

Merci d'avance
Version cmsms : 1.4.1 spring garden
J'ai copié le code à partir de la ligne 67
class Download extends CMSModule
{
private $modconf = array();
private $db = null;
protected $feuref = null;
protected $usrGrps = null;
protected $loggedIn = 0;
//public $smarty = null;
function Download() {
global $gCms;
parent::CMSModule();
$this->smarty = &$gCms->smarty;
$this->modconf['modpath'] = locateme();
$this->smarty->assign('dlmodpath',$this->modconf['modpath']);
$this->db = &$gCms->db;
$resConf = $this->db->Execute("SELECT * FROM ".cms_db_prefix()."module_download_config;");
while($resConf && $row = $resConf->FetchRow()) {
if(isset($this->modconf[$row['ckey']])) {
$cntDup = 1;
if (isset($this->modconf[$row['ckey'].'_1'])) {
while(isset($this->modconf[$row['ckey'].'_'.$cntDup])) $cntDup++;
}
$this->modconf[$row['ckey'].'_'.$cntDup] = $row['cvalue'];
} else $this->modconf[$row['ckey']] = $row['cvalue'];
}
}