Show
Ignore:
Timestamp:
03/26/08 12:17:56 (10 months ago)
Author:
aarkerio
Message:

Fix help bug report

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/helps/newticket.ctp

    r303 r348  
    11<h1>Reporting bugs</h1> 
    2  
    3 <p>You can help the Karamelo developrment team by reporting bugs and making suggestions to improve this application. </p> 
    4  
    5  
    6  
    72<?php  
    8  
    9   echo $form->create('Help', array('admin_submit')); 
    10  
     3  echo $html->para(null, 'You can help the Karamelo development team by reporting bugs and making suggestions to improve this application.'); 
     4  echo $form->create('Help', array('action'=>'submit')); 
     5   
    116  echo $form->label('Help.report', 'Description:') . '<br />'; 
    127  echo $form->textarea('Help.report', array('rows'=>8, 'cols'=>60)) . '<br />'; 
    13  
     8   
    149  echo $form->label('Help.kind', 'Kind:') . '<br />'; 
    1510  echo $form->select('Help.kind', array('Enhancement'=>'Enhancement', 'Bug'=>'Bug', 'Suggestion'=>'Suggestion'), null, null, false) . '<br />'; 
    16  
     11   
    1712  echo $form->end('Send'); 
    18  
     13   
    1914  $html->link('Submit new ticket', 'http://trac.mononeurona.org/karamelo/newticket');  
    2015