new logo sizes

This commit is contained in:
Roland Gruber 2010-12-19 14:08:38 +00:00
parent ebda7da2a2
commit 07fe1a3929
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ function getAvailableLogos() {
while($file = readdir($dirHandle)) {
if(!is_dir($file) && $file != '.' && $file != '..' && preg_match('/\\.(jpg|png)$/',$file)) {
$infos = getimagesize($dirPath . $file);
if($infos[0] <= 400 && $infos[1] <= 60) {
if($infos[0] <= 2000 && $infos[1] <= 300) {
array_push($return, array('filename' => $file, 'infos' => $infos));
}
}