This thread is weird
Anyway,
In Post #1 I downloaded the .zip and applied the hack.
The instructions for the admin/index.php are not so good for vB 2.2.5 and here is how I changed it.
in vBulletin 2.2.5 admin/index.php find:
Code:
makenavselect("Templates","<hr>");
// *************************************************
?>
</table>
and replace with:
Code:
makenavselect("Templates","<hr>");
// *************************************************
// ***
makenavoption("Add","../links/adminlinks.php?action=add","|");
makenavoption("Modify","../links/adminlinks.php?action=modify","|");
makenavoption("Approve","../links/adminlinks.php?action=offline");
makenavselect("Links");
// ***
makenavoption("Add","../links/adminlinks.php?action=addcat","|");
makenavoption("Modify","../links/adminlinks.php?action=modifycat","|");
makenavoption("Arrange","../links/adminlinks.php?action=ordercat");
makenavselect("Category");
// ***
?>
</table>
One of the things I wanted to know when someone submits a new link. Who submitted this? I added the below code to the links_email_newsite template:
Code:
Submitted by: $bbuserinfo[username]
(you can place that anywhere between the two long lines in the template)
Hope this helps anybody.