From user http://drupal.org/user/20262

Fatal error: Call to undefined function _image_get_dimensions() in
/customers/liljeholmensfolkhogskola.se/liljeholmensfolkhogskola.se/httpd.www/modules/flash_gallery/flash_gallery.module
on line 82

And

The problem was easliy fixed:
function theme_flash_gallery($galleries, $tid) {
// We'll add height to keep thumbnails lined up.
$size = _image_get_sizes('thumbnail'); // new name on function; used to
be _image_get_dimensions
$width = $size['width'];
$height = $size['height'];
....
}

Comments

Haggle’s picture

Is this a fix to the problem presented with images module 1.3 and 1.4? I noticed flash gallery gives me a white screen when using it with image gallery 1.4 but with 1.0-2 it works fine. If it is please be a bit more descriptive. In what files are you changing the code?

sime’s picture

Status: Active » Closed (won't fix)

Flash Gallery is incompatible with Image module 5.x-1.3+.

(Haggle, just look for the function theme_flash_gallery() in flash_gallery.module)

sime’s picture

sime’s picture

Status: Closed (won't fix) » Closed (duplicate)