Show
Ignore:
Timestamp:
09/17/07 13:30:42 (14 months ago)
Author:
aarkerio
Message:

Update

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/messages/contact.thtml

    r103 r105  
    1111        <?php  
    1212          echo $form->labelTag( 'Message/title', 'Title:' ) . '<br />'; 
    13           echo $html->selectTag('Message/title', array("Mr." => "Mr.", "Miss" => "Miss"));  
     13          echo $html->selectTag('Message/title', array("Mr." => "Mr.", "Mrs."=>"Mrs.", "Miss" => "Miss", "Dr."=>"Dr.", "Fellow"=>"Fellow"), null, null, false, false);  
    1414        ?> 
    1515     <br /> 
     
    2121     <br />      
    2222     <p> 
    23         <?php echo $form->labelTag( 'Message/body', 'Body:' );?><br /> 
     23        <?php echo $form->labelTag('Message/body', 'Body:' );?><br /> 
    2424    <?php echo $html->textarea('Message/body', array("cols"=>15, "rows"=>5)); ?> 
    2525    <?php echo $fck->load('Message/body', 'Basic', 480, 220); ?> 
     
    3030  <?php echo $ajax->submit('Send', array("url"      => "/messages/insert/",  
    3131                                         "update"   =>"updater", 
    32                                          "before"   => "return chkForm();MyFCKObject.UpdateEditorFormValue()",  
     32                                         //"before"   => "return chkForm()",  
    3333                                         "loading"  => "Element.show('charging');Element.hide('updater')", 
    3434                                         "complete" => "Element.hide('charging');Effect.Appear('updater')" 
     
    6464    return false; 
    6565  } 
     66   
    6667  return true; 
    6768}