From 07fe1a39299734c5fdfed2a84d5eb64db0b39a60 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 19 Dec 2010 14:08:38 +0000 Subject: [PATCH] new logo sizes --- lam/lib/pdfstruct.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/pdfstruct.inc b/lam/lib/pdfstruct.inc index 01aa8650..e1e27a0e 100644 --- a/lam/lib/pdfstruct.inc +++ b/lam/lib/pdfstruct.inc @@ -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)); } }