소스 검색

Merge pull request #413 from mrtorrent/patch-1

Fix missing semicolon in PostAdmin example
Thomas 13 년 전
부모
커밋
1b022cd0f0
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      README.md

+ 1 - 0
README.md

@@ -89,6 +89,7 @@ class PostAdmin extends Admin
             ->add('title')
             ->add('title')
             ->add('enabled')
             ->add('enabled')
             ->add('tags', null, array('filter_field_options' => array('expanded' => true, 'multiple' => true)))
             ->add('tags', null, array('filter_field_options' => array('expanded' => true, 'multiple' => true)))
+        ;
     }
     }
 }
 }
 ```
 ```