瀏覽代碼

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('enabled')
             ->add('tags', null, array('filter_field_options' => array('expanded' => true, 'multiple' => true)))
+        ;
     }
 }
 ```