Jelajahi Sumber

[DOCS] Fixed minor issues with tutorial narrative, code samples

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20879 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew 16 tahun lalu
induk
melakukan
ebbfacf74a

+ 2 - 3
documentation/manual/en/tutorials/quickstart-create-form.xml

@@ -164,9 +164,8 @@ echo $this->form;
         </para>
 
         <para>
-            Additionally, you may be interested in <ulink
-                url="http://weierophinney.net/matthew/plugin/tag/decorators">this series of posts on
-                decorators</ulink>.
+            Additionally, you may be interested in <link
+                linkend="learning.form.decorators.intro">our tutorial on form decorators</link>.
         </para>
     </note>
 

+ 1 - 2
documentation/manual/en/tutorials/quickstart-create-model.xml

@@ -516,8 +516,7 @@ class Application_Model_GuestbookMapper
             $entry->setId($row->id)
                   ->setEmail($row->email)
                   ->setComment($row->comment)
-                  ->setCreated($row->created)
-                  ->setMapper($this);
+                  ->setCreated($row->created);
             $entries[] = $entry;
         }
         return $entries;