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,215
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