Changeset 556 for trunk/app/views/entries
- Timestamp:
- 05/22/08 21:32:06 (6 months ago)
- Location:
- trunk/app/views/entries
- Files:
-
- 2 modified
-
admin_add.ctp (modified) (1 diff)
-
admin_edit.ctp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/entries/admin_add.ctp
r356 r556 39 39 <td> 40 40 <?php 41 echo $form->label('Entry.status', 'Published:' );42 echo $form->checkbox('Entry.status', array( "value"=>1));41 echo $form->label('Entry.status', 'Published:'); 42 echo $form->checkbox('Entry.status', array('value'=>1)); 43 43 ?> 44 44 </td><td> 45 45 <?php 46 echo $form->label( 'Entry.discution', 'Comments allowed:' );47 echo $form->checkbox('Entry.discution', null, array("value"=>1));46 echo $form->label('Entry.discution', 'Comments allowed:' ); 47 echo $form->checkbox('Entry.discution', array('value'=>1)); 48 48 ?> 49 49 </td> 50 50 <td> 51 51 <?php 52 echo $form->label( 'Entry.end', 'Finish edition:' );53 echo $form->checkbox('Entry.end', array( "value" =>1));52 echo $form->label('Entry.end', 'Finish edition:' ); 53 echo $form->checkbox('Entry.end', array('value'=>1)); 54 54 ?> 55 55 </td> -
trunk/app/views/entries/admin_edit.ctp
r307 r556 54 54 <?php 55 55 echo $form->label('Entry.discution', 'Comments allowed:' ); 56 echo $form->checkbox('Entry.discution', null, array("value"=> 1));56 echo $form->checkbox('Entry.discution', array('value' => 1)); 57 57 ?> 58 58 </td> … … 60 60 <?php 61 61 echo $form->label('Entry.end', 'Finish edition:' ); 62 echo $form->checkbox('Entry.end', null, array("value" =>1));62 echo $form->checkbox('Entry.end', array('value'=>1)); 63 63 ?> 64 64 </td>
