Changeset 83

Show
Ignore:
Timestamp:
03/15/06 14:24:55 (3 years ago)
Author:
fabien
Message:

renamed deprecated methods

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/apps/frontend/modules/administrator/actions/actions.class.php

    r55 r83  
    1616 
    1717    $this->title = 'problematic user list'; 
    18     $this->setTitle($this->title); 
     18    $this->getResponse()->setTitle($this->title); 
    1919  } 
    2020 
     
    2424 
    2525    $this->title = 'moderator list'; 
    26     $this->setTitle($this->title); 
     26    $this->getResponse()->setTitle($this->title); 
    2727  } 
    2828 
     
    3232 
    3333    $this->title = 'administrator list'; 
    34     $this->setTitle($this->title); 
     34    $this->getResponse()->setTitle($this->title); 
    3535  } 
    3636 
     
    4040 
    4141    $this->title = 'moderator candidates'; 
    42     $this->setTitle($this->title); 
     42    $this->getResponse()->setTitle($this->title); 
    4343  } 
    4444 
  • trunk/apps/frontend/modules/content/actions/actions.class.php

    r69 r83  
    2323    $this->html = markdown(file_get_contents($file)); 
    2424 
    25     $this->setTitle('askeet! » about'); 
     25    $this->getResponse()->setTitle('askeet! » about'); 
    2626  } 
    2727 
     
    3636    } 
    3737 
    38     $this->setTitle('askeet! » maintenance'); 
     38    $this->getResponse()->setTitle('askeet! » maintenance'); 
    3939  } 
    4040} 
  • trunk/apps/frontend/modules/user/actions/actions.class.php

    r73 r83  
    231231    $this->questions = $this->subscriber->getQuestions(); 
    232232 
    233     $this->setTitle('askeet! » '.$this->subscriber->__toString().'\'s profile'); 
     233    $this->getResponse()->setTitle('askeet! » '.$this->subscriber->__toString().'\'s profile'); 
    234234  } 
    235235}