Posted by Toxid on March 12, 2010 at 12:46am
1 follower
Jump to:
| Project: | Admin links |
| Version: | 6.x-1.8 |
| Component: | Documentation |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Hello! I use advanced forum. I'd like the edit/delete links to appear next to the reply link. The reply link is appears with $links, but not the admin links. How do you call on admin links?
Comments
#1
I never figured out how to do this with admin links, but I put this code in the template file to accomplish the same result:
Edit:
<?phpprint l('Edit', 'node/' . $nid . '/edit');
?>
Delete:
<?phpprint l('Delete', 'node/' . $nid . '/delete');
?>