Changeset 83
- Timestamp:
- 03/15/06 14:24:55 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/apps/frontend/modules/administrator/actions/actions.class.php
r55 r83 16 16 17 17 $this->title = 'problematic user list'; 18 $this-> setTitle($this->title);18 $this->getResponse()->setTitle($this->title); 19 19 } 20 20 … … 24 24 25 25 $this->title = 'moderator list'; 26 $this-> setTitle($this->title);26 $this->getResponse()->setTitle($this->title); 27 27 } 28 28 … … 32 32 33 33 $this->title = 'administrator list'; 34 $this-> setTitle($this->title);34 $this->getResponse()->setTitle($this->title); 35 35 } 36 36 … … 40 40 41 41 $this->title = 'moderator candidates'; 42 $this-> setTitle($this->title);42 $this->getResponse()->setTitle($this->title); 43 43 } 44 44 trunk/apps/frontend/modules/content/actions/actions.class.php
r69 r83 23 23 $this->html = markdown(file_get_contents($file)); 24 24 25 $this-> setTitle('askeet! » about');25 $this->getResponse()->setTitle('askeet! » about'); 26 26 } 27 27 … … 36 36 } 37 37 38 $this-> setTitle('askeet! » maintenance');38 $this->getResponse()->setTitle('askeet! » maintenance'); 39 39 } 40 40 } trunk/apps/frontend/modules/user/actions/actions.class.php
r73 r83 231 231 $this->questions = $this->subscriber->getQuestions(); 232 232 233 $this-> setTitle('askeet! » '.$this->subscriber->__toString().'\'s profile');233 $this->getResponse()->setTitle('askeet! » '.$this->subscriber->__toString().'\'s profile'); 234 234 } 235 235 }
