Here is a patch to update this module to 4.7. I haven't tested it extremely extensively, but it did seem to work for my purposes. Hope it helps!

CommentFileSizeAuthor
taxonomy_image.module.patch8.9 KBwebchick

Comments

paddy_deburca’s picture

Thanks for the patch.

I applied the patch (by hand) to the CVS version of taxonomy_image.module to upgrade it to 4.7 and also applied the necessary changed to phptemplate.theme.

I now have my taxonomy images working perfectly in 4.7beta4.

Thanks a million.

Paddy.

paddy_deburca’s picture

I have addid the following code to function taxonomy_image_form()

  • wrapped the image to be edited in it's own DIV
    $image = '<div class="taxonomy-image-edit">' . taxonomy_image_display($edit['tid']) .'</div>';
  • returned the image and the edit form the function
    return $image . drupal_get_form('taxonomy_image_form', $form);

Paddy.

jeremy’s picture

Status: Needs review » Fixed

Thanks for the patch, webchick! Sorry for letting it sit for so incredibly long. It was finally merged.

As for the missing image on the 'edit image' page, I added it using the forms API 'markup' type.

Anonymous’s picture

Status: Fixed » Closed (fixed)