Modify ↓
#181 closed defect (fixed)
Delete action has wrong path
| Reported by: | Owned by: | Radek Bartoň | |
|---|---|---|---|
| Priority: | normal | Component: | GuestbookPlugin |
| Severity: | normal | Keywords: | |
| Cc: | Trac Release: |
Description
If I want to delete an entry, I get "requested path not found"
I think this happens when your Trac installation is not on http://domain but http://domain/trac
So path declaration should be relative.
Attachments (0)
Note: See
TracTickets for help on using
tickets.



Instead of:
<th class="right"> <a href="/guestbook?action=delete;id=<?cs var:message.id ?>"> Delete </a>use:
<th class="right"> <a href="<?cs var:trac.href.guestbook ?>?action=delete;id=<?cs var:message.id ?>"> Delete </a>