Correction notice

This commit is contained in:
Michael RICOIS 2010-03-26 14:34:19 +00:00
parent 09100c65f5
commit 5e9b06d893
2 changed files with 8 additions and 4 deletions

View File

@ -245,7 +245,9 @@ function scoresws_dirigeants($siret, $siren, $idEntreprise)
if (($siret*1)==0 && ($siren*1)<100) { $fileName = 'dirigeants-'.$idEntreprise;
}else{ $fileName = 'dirigeants-'.$siret; }
$histo = false;
if ($_REQUEST['vue']=='histo'){ $fileName .= '-histo'; $histo=true; }
if ( isset($_REQUEST['vue']) && $_REQUEST['vue']=='histo' ){
$fileName .= '-histo'; $histo=true;
}
cache_filename($fileName);
if( 0 && cache_exist() && !( preg_match('/\bsaisie\b/i', $_SESSION['tabInfo']['droits']) || $_SESSION['tabInfo']['mode_edition']==1 ) ){
$dirs = cache_get('dirs');

View File

@ -43,7 +43,7 @@ $dirs = scoresws_dirigeants($siret, $siren, $idEntreprise);
</tr>
</table>
<?php
if ($_REQUEST['vue']=='histo')
if (isset($_REQUEST['vue']) && $_REQUEST['vue']=='histo')
{
?>
<h2>Historique des dirigeants</h2>
@ -159,7 +159,9 @@ if ($_REQUEST['vue']=='histo')
<?php
if (($siret*1)==0 && ($siren*1)<100) { $fileName = 'dirigeants-'.$idEntreprise;
}else{ $fileName = 'dirigeants-'.$siret; }
if ($_REQUEST['vue']=='histo'){ $fileName .= '-histo'; }
if ( isset($_REQUEST['vue']) && $_REQUEST['vue']=='histo' ){
$fileName .= '-histo';
}
//Exportation des données sous forme de fichier
function htmldecode($value){
@ -178,7 +180,7 @@ if(count($tabForExport)>0){
$array2xml = new ExportXML();
$array2xml->rootName = $page.'s';
$array2xml->defaultTagName = $page;
if ($_REQUEST['vue']=='histo'){
if ( isset($_REQUEST['vue']) && $_REQUEST['vue']=='histo'){
$array2xml->rootName = 'historique'.$page.'s';
$array2xml->defaultTagName = 'historique'.$page;
}