Created
March 9, 2010 04:48
-
-
Save slywalker/326204 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/workshop/views/posts/edit.ctp b/workshop/views/posts/edit.ctp | |
index f6a1be1..084d94c 100644 | |
--- a/workshop/views/posts/edit.ctp | |
+++ b/workshop/views/posts/edit.ctp | |
@@ -7,7 +7,7 @@ | |
echo $form->input('user_id'); | |
echo $form->input('title'); | |
echo $form->input('body'); | |
- echo $form->input('Tag'); | |
+ echo $form->input('Tag', array('multiple' => 'checkbox')); | |
?> | |
</fieldset> | |
<?php echo $form->end('Submit');?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment