View Single Post
  #2 (permalink)  
Old 06-25-2006, 01:05 PM
kbeeveer46's Avatar
kbeeveer46 kbeeveer46 is offline
Pligg Developer/Admin
 
Join Date: Jun 2006
Location: Muncie, Indiana
Posts: 3,547
Thanks: 254
Thanked 649 Times in 513 Posts
I fixed my problem using this thread

http://www.pligg.com/forum/showthrea...et%28%24url%29

Quote:
A couple of lines down I notice the following test:

Code:

if(!($this->html = $xxx)) { return; }


Shouldn't that read

Code:

if(!($this->html === $xxx))
Reply With Quote