Show
Ignore:
Timestamp:
10/06/08 07:56:20 (2 months ago)
Author:
aarkerio
Message:

Udates to RC3

Location:
trunk/app/views/entries
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/entries/admin_add.ctp

    r793 r794  
    3939 <?php  
    4040     echo $form->label('Entry.status', __('Published', true)); 
    41      echo $form->checkbox('Entry.status', array('value'=>1));  
     41     echo $form->checkbox('Entry.status');  
    4242  ?> 
    4343  </td><td> 
    4444   <?php  
    4545      echo $form->label('Entry.discution', __('Allow comments', true)); 
    46       echo $form->checkbox('Entry.discution', array('value'=>1));  
     46      echo $form->checkbox('Entry.discution');  
    4747   ?> 
    4848  </td> 
     
    5050     <?php  
    5151       echo $form->label('Entry.end', __('Finish edition', true)); 
    52        echo $form->checkbox('Entry.end', array('value'=>1)); 
     52       echo $form->checkbox('Entry.end'); 
    5353    ?> 
    5454   </td> 
  • trunk/app/views/entries/admin_edit.ctp

    r701 r794  
    1 <?php  
    2   echo $javascript->link('myfunctions'); 
     1<?php   
    32  echo $javascript->link('fckeditor/fckeditor'); 
    43  echo $html->addCrumb('Control Panel', '/admin/entries/start');  
     
    4039    <?php  
    4140        echo $form->label('Entry.status', __('Published',true) ); 
    42         echo $form->checkbox('Entry.status', null, array('value' => 1));  
     41        echo $form->checkbox('Entry.status');  
    4342    ?> 
    4443  </td> 
     
    4645 <?php  
    4746   echo $form->label('Entry.discution', __('Allow comments', true) ); 
    48    echo $form->checkbox('Entry.discution', array('value' => 1));  
     47   echo $form->checkbox('Entry.discution');  
    4948?> 
    5049  </td> 
    5150  <td> 
    52   <?php  
     51 <?php  
    5352      echo $form->label('Entry.end', __('Finish edition', true) ); 
    54       echo $form->checkbox('Entry.end', array('value'=>1));  
     53      echo $form->checkbox('Entry.end');  
    5554  ?> 
    5655   </td>