ZF-11920: Mistake in German Translation Quickstart Manual
Description
In the german translation of the Quickstart Manual the class GuestbookController signAction differs from the english one. German version: if ($form->isValid($request->getPost())) { $model = new Application_Model_Guestbook($form->getValues()); $model->save();
English version: if ($form->isValid($request->getPost())) { $comment = new Application_Model_Guestbook($form->getValues()); $mapper = new Application_Model_GuestbookMapper(); $mapper->save($comment);
Comments
Posted by Adam Lundrigan (adamlundrigan) on 2011-11-30T13:45:32.000+0000
Fixed in trunk r24566 Merged to release-1.11 in r24567
Posted by Adam Lundrigan (adamlundrigan) on 2011-12-01T21:10:44.000+0000
ZF2 Pull Request: https://github.com/zendframework/zf2/pull/645