Merge pull request #241 from emarguin/imageforum2

pbm with pictures dimensions in forums
1.9.x
Yannick Warnier 12 years ago
commit ab9ae60762
  1. 13
      main/forum/index.php

@ -305,9 +305,6 @@ if (is_array($forumCategories)) {
$mywhatsnew_post_info = isset($whatsnew_post_info[$forum['forum_id']]) ? $whatsnew_post_info[$forum['forum_id']] : null; $mywhatsnew_post_info = isset($whatsnew_post_info[$forum['forum_id']]) ? $whatsnew_post_info[$forum['forum_id']] : null;
$forum_image = ''; $forum_image = '';
echo '<td width="20px">';
// Showing the image // Showing the image
if (!empty($forum['forum_image'])) { if (!empty($forum['forum_image'])) {
@ -319,13 +316,21 @@ if (is_array($forumCategories)) {
if ($image_size['width'] > 100 || $image_size['height'] > 100) { if ($image_size['width'] > 100 || $image_size['height'] > 100) {
//limit display width and height to 100px //limit display width and height to 100px
$img_attributes = ' style="width:100px" width="100px" height="100px"'; $img_attributes = ' style="width:100px" width="100px" height="100px"';
$td_width = 100;
} }
$forum_image = "<img src=\"$image_path\" $img_attributes>"; else
{
$td_width = $image_size['width'];
}
$forum_image = "<img src=\"$image_path\" $img_attributes>";
} else { } else {
$forum_image = ''; $forum_image = '';
$td_width = 20;
} }
echo '<td width="'.$td_width.'px">';
echo $forum_image; echo $forum_image;
} else { } else {
echo '<td width="20px">';
if ($forum['forum_of_group'] !== '0') { if ($forum['forum_of_group'] !== '0') {
if (is_array($mywhatsnew_post_info) && !empty($mywhatsnew_post_info)) { if (is_array($mywhatsnew_post_info) && !empty($mywhatsnew_post_info)) {
echo Display::return_icon('forumgroupnew.gif'); echo Display::return_icon('forumgroupnew.gif');

Loading…
Cancel
Save