Development

#3356 (typo in "My first symfony project")

You must first sign up to be able to contribute.

Ticket #3356 (closed documentation: fixed)

Opened 8 months ago

Last modified 7 months ago

typo in "My first symfony project"

Reported by: wrocsm Assigned to: fabien
Priority: minor Milestone:
Component: other Version: 1.0.12
Keywords: Cc:
Qualification: Unreviewed

Description

The backend of the project does not have a main module, so the redirect does not work and probably should be changed to post/list ?

public function executeLogin() {

if ($this->getRequestParameter('login') == 'admin' && $this->getRequestParameter('password') == 'password') {

$this->getUser()->setAuthenticated(true);

return $this->redirect('main/index');

} else {

$this->getRequest()->setError('login', 'incorrect entry');

return $this->forward('security', 'index');

}

}

Change History

04/29/08 10:15:43 changed by FabianLange

  • status changed from new to closed.
  • resolution set to fixed.

(In [8669]) fixed documentation typo in my first project (closes #3356)