| 1 |
<?php |
<?php |
| 2 |
// $Id$ |
// $Id: imceimage.inc,v 1.1.2.1 2008/10/28 22:11:03 yangyicn Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 66 |
$formatted_image['rel'] = $variables['image_rel']; |
$formatted_image['rel'] = $variables['image_rel']; |
| 67 |
$formatted_image['width'] = $width; |
$formatted_image['width'] = $width; |
| 68 |
$formatted_image['height'] = $height; |
$formatted_image['height'] = $height; |
| 69 |
$formatted_image['alt'] = $image['imceimage_alt']; |
$formatted_image['alt'] = htmlspecialchars(check_plain($image['imceimage_alt']), ENT_NOQUOTES); // escape double quotes as we may use it in output |
| 70 |
$variables['images'][] = $formatted_image; |
$variables['images'][] = $formatted_image; |
| 71 |
} |
} |
| 72 |
} |
} |