Well like acople of my last posts I'm making the user quick link hack for personall use and there were two edits that I'm wondering if there was a hook for, the edits are:
In global.php
find
PHP Code:
// #############################################################################
// ######################### END TEMPLATES & STYLES ############################
// #############################################################################
and add below:
PHP Code:
if ($vbulletin->userinfo['customquicklinks'])
{
$cqlinks = unserialize($vbulletin->userinfo['customquicklinks']);
$customquicklinks = '';
if ($cqlinks)
{
$show['customquicklinks'] = true;
foreach ($cqlinks AS $cqlink)
{
$cqlink = unserialize($cqlink);
eval('$customquicklinks .= "' . fetch_template('customquicklink') . '";');
}
}
}
the second edit is:
In /includes/functions_user.php
Find:
PHP Code:
'options',
'password',
and add Below
Thanks for any help!