The urls of actions generated for the list (e.g Edit, Delete etc) are invalid if clean urls are not enabled.

Here is a patch that solves the problem:
function theme_autoadmin_operations($operations) {
$html = '';
$base_path = base_path();
foreach ($operations as $operations => $operation) {
$html .= l($operation['title'],
$operation['href'],
array('query' => $operation['query'],
'attributes' => array('class' => 'operations')));
}
return $html;
}

Comments

_rune’s picture

Thx a lot. This will go into the release of 1.0 that will happen during the weekend (finally:).

EDIT: that will happen during this week :)

_rune’s picture

Assigned: Unassigned » _rune
Status: Active » Fixed

Fixed in the 1.0.

_rune’s picture

Status: Fixed » Closed (fixed)