forked from ZwiiCMS-Team/ZwiiCMS
093 sécurise la mise à jour de la couverture de la galerie
This commit is contained in:
parent
54ef6d95dd
commit
85423bbf2c
@ -1264,12 +1264,13 @@ class common {
|
||||
}
|
||||
// Image de couverture
|
||||
if ( $this->getdata(['module',$parent,$galleryKey,'config','homePicture']) === NULL) {
|
||||
if (is_dir($this->getdata(['module',$parent,$galleryKey,'config','directory']))) {
|
||||
$iterator = new DirectoryIterator($this->getdata(['module',$parent,$galleryKey,'config','directory']));
|
||||
foreach($iterator as $fileInfos) {
|
||||
if($fileInfos->isDot() === false AND $fileInfos->isFile() AND @getimagesize($fileInfos->getPathname())) {
|
||||
$this->setdata(['module',$parent,$galleryKey,'config','homePicture',$fileInfos->getFilename()]);
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user