Development

#3899 (Mistake in the form book, Propel integration section)

You must first sign up to be able to contribute.

Ticket #3899 (closed documentation: fixed)

Opened 2 months ago

Last modified 2 months ago

Mistake in the form book, Propel integration section

Reported by: thomas-d Assigned to: fabien
Priority: minor Milestone:
Component: form Version: 1.1.0
Keywords: Cc:
Qualification: Unreviewed

Description

I guess lines 613 to 617 from the chapter 4 of the "symfony Forms Book" should be modified from

613 	        unset($this->validatorSchema['created_at']);
614 	        unset($this->widgetSchema['updated_at']);
615 	
616 	        unset($this->validatorSchema['created_at']);
617 	        unset($this->widgetSchema['updated_at']);

to

613 	        unset($this->validatorSchema['created_at']);
614 	        unset($this->widgetSchema['created_at']);
615 	
616 	        unset($this->validatorSchema['updated_at']);
617 	        unset($this->widgetSchema['updated_at']);

Change History

07/03/08 17:50:58 changed by FabianLange

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

in r10100