Thread: Advice please
View Single Post
Old 07-05-2008, 02:54 AM   #6 (permalink)
2GrandArcade
Senior Member
 
Join Date: Feb 2007
Posts: 487
2GrandArcade is on a distinguished road


Default

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.
__________________

------------------
Arcade Directory - submit your site.
Free online games
Flash games

2GrandArcade is offline  
Digg this Post!
Reply With Quote