Index: imagefield_assist.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imagefield_assist/imagefield_assist.module,v
retrieving revision 1.1.2.19
retrieving revision 1.1.2.20
diff -r1.1.2.19 -r1.1.2.20
2c2
< // $Id: imagefield_assist.module,v 1.1.2.19 2009/12/30 01:09:58 franz Exp $
---
> // $Id: imagefield_assist.module,v 1.1.2.20 2010/01/08 13:10:06 franz Exp $
1625,1626c1625,1626
<       $width = 'width="' . $attributes['width'] . '"';
<       $height = 'height="' . $attributes['height'] . '"';
---
>       $width = empty($attributes['width']) ? '' : 'width="' . $attributes['width'] . '"';
>       $height = empty($attributes['height']) ? '' : 'height="' . $attributes['height'] . '"';
