"Delete" fails unless using clean urls
thudfactor - October 3, 2007 - 19:03
| Project: | Default Filter |
| Version: | 5.x-1.x-dev |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
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.

#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
<?phpl(t('Delete'),'/admin/settings/default_filter/delete/' . $row->id )
?>
seems to resolve this.