Changeset 556

Show
Ignore:
Timestamp:
05/22/08 21:32:06 (5 months ago)
Author:
aarkerio
Message:

Liitle changes

Location:
trunk/app/views
Files:
3 modified

Legend:

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

    r356 r556  
    3939  <td> 
    4040 <?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));  
    4343  ?> 
    4444  </td><td> 
    4545   <?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));  
    4848   ?> 
    4949  </td> 
    5050   <td> 
    5151     <?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)); 
    5454    ?> 
    5555   </td> 
  • trunk/app/views/entries/admin_edit.ctp

    r307 r556  
    5454 <?php  
    5555   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));  
    5757?> 
    5858  </td> 
     
    6060  <?php  
    6161      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));  
    6363  ?> 
    6464   </td> 
  • trunk/app/views/layouts/portal.ctp

    r543 r556  
    88<title>Karamelo:: <?php echo $title_for_layout; ?> </title> 
    99<meta name="keywords" content="education, school, elearning" /> 
    10 <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> 
    1110<meta name="description" content="Educational Portal" /> 
    1211<?php