07-05-2008, 02:54 AM
|
#6 (permalink)
|
|
Senior Member
Join Date: Feb 2007
Posts: 487
|
in plugins/links exec.php change
PHP Code:
SET out=out WHERE id='".$link['id']."'");
and
PHP Code:
SET out=out+1 WHERE id='".$link['id']."'");
to
PHP Code:
SET `out`=`out` WHERE `id`='".$link['id']."'");
and
PHP Code:
SET `out`=`out`+1 WHERE `id`='".$link['id']."'");
oh,wait...it's already done.
as to why it needed to be changed,i don't know.
i just knew what to do.
|
|
|