Download & Extend

"Delete" fails unless using clean urls

Project:Default Filter
Version:5.x-1.x-dev
Component:User interface
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

If you're not using clean urls, you can't delete a setting through the user interface because the "delete" button appears bound to the clean url.

Comments

#1

Changing line 100 of default_filter.module to

from

<?php
'<a href="' . $base_url . '/admin/settings/default_filter/delete/' . $row->id . '">' . t('Delete') . '</a>',
?>

to

<?php
l
(t('Delete'),'/admin/settings/default_filter/delete/' . $row->id )
?>

seems to resolve this.