PDA

View Full Version : I really need this done, simple change to latest links module


HenrikHansen
11-22-2006, 03:12 PM
...making the latest links module only show latest links from
one specific category, and not all categories.

http://www.vbadvanced.com/forum/showpost.php?p=98618&postcount=13

This should be so simple I guess, but maybe I have to make a paid request at vbulletin.org :cool:

Brian
11-22-2006, 03:42 PM
Change this line:
WHERE links.valid = 1 AND links.suspended = 0 $privcats

To this:
WHERE links.valid = 1 AND links.suspended = 0 AND catid = 14 $privcats

;)

Our Sponsors
 

HenrikHansen
11-23-2006, 12:21 PM
Thanks Brian,

however, I have changed your suggested solution to

WHERE links.valid = 1 AND links.suspended = 0 and links.catid = 14 $privcats


;)