Ticket #773 (closed defect: duplicate)

Opened 11 months ago

Last modified 9 months ago

Ampersand in TForm action

Reported by: aca Owned by: xue
Priority: normal Milestone: 3.1.2
Component: Prado Framework v3 Version: 3.1
Severity: minor Keywords:
Cc:

Description

The form action need to replace & with & so the code can w3 validate.

Line 50 in TForm.php is $writer->addAttribute('action',$this->getRequest()->getRequestURI());

and can be changed to somthing like this:

$writer->addAttribute('action',str_replace('&', '&', $this->getRequest()->getRequestURI()));

Change History

Changed 10 months ago by xue

  • milestone set to 3.1.2

Changed 9 months ago by maddin

This is fixed in SVN -> *close*

Changed 9 months ago by tof06

  • status changed from new to closed
  • resolution set to duplicate

Duplicate of #662

Note: See TracTickets for help on using tickets.