Just installed this and found the following bug:
The userid and username are not added to the links db when a member adds a link.
replace:
PHP Code:
$DB_site->query("
INSERT INTO local_linkslink (linkname, linkurl, linkdesc, linkhits, linkforum, linkcheck, linkstatus, linkdate)
VALUES (
'".addslashes(htmlspecialchars($linkname))."',
'$linkurl',
'".addslashes(htmlspecialchars($linkdesc))."',
0,
'$pforum',
$statustime,
$statuscheck,
$statustime
)
");
with:
PHP Code:
$DB_site->query("
INSERT INTO local_linkslink (linkname, linkurl, linkdesc, linkhits, linkforum, linkcheck, linkstatus, linkdate, linkusername, linkuserid)
VALUES (
'".addslashes(htmlspecialchars($linkname))."',
'$linkurl',
'".addslashes(htmlspecialchars($linkdesc))."',
0,
'$pforum',
$statustime,
$statuscheck,
$statustime,
'".addslashes(htmlspecialchars($bbuserinfo[username]))."',
$bbuserinfo[userid]
)
");
and replace:
PHP Code:
$query = "
SELECT link.linkid AS linkid, link.linkname AS linkname,
with:
PHP Code:
$query = "
SELECT link.linkid AS linkid, link.linkname AS linkname, link.linkuserid AS linkuserid,
and add the following:
PHP Code:
$linkuserid = $myrow["linkuserid"];
below this code:
PHP Code:
while ($myrow=$DB_site->fetch_array($asb)) {
$linkid = $myrow["linkid"];
$linkname = parse_bbcode2($myrow["linkname"], 1, 1, 1, 1);
$linkurl = $myrow["linkurl"];
$linkhits = $myrow["linkhits"];
$linkstatus = $myrow["linkstatus"];
also the templates are not setup to show the "edit" link for members own links.
In the links_linkbit template
replace:
HTML Code:
<if condition="$links_permissions[can_edit_link]>
with:
HTML Code:
<if condition="$links_permissions[can_edit_link] or $bbuserinfo[userid] == $linkuserid">
I think thats everything.