View Single Post
  #5  
Old 8th August 2008, 15:57
johnake's Avatar
johnake johnake is offline
Senior Member
 
Join Date: Dec 2007
Posts: 52
Default
Well, I just installed it...
You use a function that does not exist: htmlstrip. If I'm not mistaken, it was this:

PHP Code:
function htmlstrip($str) {
  return 
htmlspecialchars(htmlspecialchars_decode($str));

You're missing a column in the messages table called subject.
__________________
PHP Code:
class mySelf extends World
   
{
       public 
$health;
       private 
$friends;
       protected 
$love;
  
   public function 
__construct()
  {
       
$this->health 100;
       
$this->friends 2;
       
$this->love true;
  }
  protected function 
__love()
  { 
      
//has a bug... for the moment...
      //will fix it later.. until then:
      
sleep(15*365*24*3600);
  }

Reply With Quote