Changeset 73
- Timestamp:
- 02/24/06 14:52:34 (3 years ago)
- Files:
-
- trunk/apps/frontend/modules/answer/actions/actions.class.php (modified) (1 diff)
- trunk/apps/frontend/modules/question/actions/actions.class.php (modified) (2 diffs)
- trunk/apps/frontend/modules/tag/actions/actions.class.php (modified) (2 diffs)
- trunk/apps/frontend/modules/user/actions/actions.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/apps/frontend/modules/answer/actions/actions.class.php
r38 r73 15 15 $this->answer_pager = AnswerPeer::getRecentPager($this->getRequestParameter('page', 1)); 16 16 17 $this-> setTitle('askeet! » recent answers');17 $this->getResponse()->setTitle('askeet! » recent answers'); 18 18 } 19 19 trunk/apps/frontend/modules/question/actions/actions.class.php
r69 r73 23 23 $this->answers = $this->question->getPopularAnswers(); 24 24 25 $this-> setTitle('askeet! » '.$this->question->getTitle());25 $this->getResponse()->setTitle('askeet! » '.$this->question->getTitle()); 26 26 } 27 27 … … 30 30 $this->question_pager = QuestionPeer::getRecentPager($this->getRequestParameter('page', 1)); 31 31 32 $this-> setTitle('askeet! » recent questions');32 $this->getResponse()->setTitle('askeet! » recent questions'); 33 33 } 34 34 trunk/apps/frontend/modules/tag/actions/actions.class.php
r69 r73 15 15 $this->question_pager = QuestionPeer::getPopularByTag($this->getRequestParameter('tag'), $this->getRequestParameter('page', 1)); 16 16 17 $this-> setTitle('askeet! » question tagged '.Tag::normalize($this->getRequestParameter('tag')));17 $this->getResponse()->setTitle('askeet! » question tagged '.Tag::normalize($this->getRequestParameter('tag'))); 18 18 } 19 19 … … 69 69 } 70 70 } 71 71 72 72 public function executePopular() 73 73 { 74 74 $this->tags = QuestionTagPeer::getPopularTags(40); 75 75 76 $this-> setTitle('askeet! » popular tags');76 $this->getResponse()->setTitle('askeet! » popular tags'); 77 77 } 78 78 } trunk/apps/frontend/modules/user/actions/actions.class.php
r55 r73 88 88 { 89 89 // display the form 90 $this-> setTitle('askeet! » sign in / register');90 $this->getResponse()->setTitle('askeet! » sign in / register'); 91 91 $this->getRequest()->getAttributeHolder()->set('referer', $this->getRequest()->getReferer()); 92 92
