Development

Changeset 11231

You must first sign up to be able to contribute.

Changeset 11231

Show
Ignore:
Timestamp:
08/28/08 20:07:21 (3 months ago)
Author:
halfer
Message:

Mistake in sfPropelForm child constructor fixed

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/tutorial/my-first-project.txt

    r11142 r11231  
    477477      public function __construct($comment, $idPost) 
    478478      { 
     479        // Save PK for configure action 
    479480        $this->idPost = $idPost; 
    480         parent::__construct(); 
     481 
     482        // Pass object to ancestor class sfPropelForm to allow editing 
     483        parent::__construct($comment); 
    481484      } 
    482485