Fixing warnings #3706

skala
Julio Montoya 14 years ago
parent e9665857d6
commit 80069ea6b8
  1. 8
      main/inc/lib/image.lib.php
  2. 16
      main/social/group_edit.php

@ -201,8 +201,12 @@ class GDWrapper extends ImageWrapper {
}
}
public function get_image_size() {
return $return_array = array('width'=>$this->width,'height'=>$this->height);
public function get_image_size() {
$return_array = array('width'=>0,'height'=>0);
if ($this->image_validated) {
$return_array = array('width'=>$this->width,'height'=>$this->height);
}
return $return_array;
}
public function fill_image_info() {

@ -146,27 +146,13 @@ $image = $image_path['file'];
$image_file = ($image != '' ? $image_dir.$image : api_get_path(WEB_CODE_PATH).'img/unknown_group.jpg');
$image_size = api_getimagesize($image_file);
$img_attributes = 'src="'.$image_file.'?rand='.time().'" '
.'alt="'.api_get_person_name($user_data['firstname'], $user_data['lastname']).'" '
.'style="float:'.($text_dir == 'rtl' ? 'left' : 'right').'; padding:5px;" ';
if ($image_size['width'] > 300) { //limit display width to 300px
$img_attributes .= 'width="300" ';
}
// get the path,width and height from original picture
$big_image = $image_dir.'big_'.$image;
$big_image_size = api_getimagesize($big_image);
$big_image_width = $big_image_size['width'];
$big_image_height = $big_image_size['height'];
$url_big_image = $big_image.'?rnd='.time();
/*
if ($image == '') {
echo '<img '.$img_attributes.' />';
} else {
echo '<input type="image" '.$img_attributes.' onclick="javascript: return show_image(\''.$url_big_image.'\',\''.$big_image_width.'\',\''.$big_image_height.'\');"/>';
}
*/
//Shows left column
//echo GroupPortalManager::show_group_column_information($group_id, api_get_user_id());

Loading…
Cancel
Save