There is something in this line of code that prevents the taxonomy manager module buttons from functioning. line 26 template.php

'<fieldset' . drupal_attributes($element['#attributes']) . '>' . ($element['#title'] ? '<legend><span class="title"><span class="border-right"><span class="border-left">' . $element['#title'] . '</span></span></span></legend>' : '')
CommentFileSizeAuthor
#3 taxo.patch857 bytesasak

Comments

Adam S’s picture

EDIT:
I added an if condition to line 18 in template.php in the Cleanr theme. I hope it doesn't mess the theme up elsewhere.

  if (!empty($element['#id'])) {
 	 $element['#attributes']['id'] = $element['#id']; 
	 }
gease’s picture

I can confirm the issue and that the solution above works.

asak’s picture

Status: Active » Needs review
StatusFileSize
new857 bytes

Same here - solution works.
Attached is a patch based on Adam's fix.

wiifm’s picture

Status: Needs review » Fixed
wiifm’s picture

Status: Fixed » Closed (fixed)