Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Ticket #1019 (closed task: fixed)

Opened 2 years ago

Last modified 2 years ago

admin localHeader.jsp pages need to adhere to jsp 2.0 specs

Reported by: dthomas Assigned to: dthomas
Priority: minor Milestone:
Component: OpenMRS Code Base Keywords:
Cc: Introductory Ticket:
Code Review Status:

Description

According to the specs:

This code is illegal: <mytags:tag value="<%= "hi!" %>" />

Instead the correct sentence would be: <mytags:tag value='<%= "hi!" %>' /> <mytags:tag value="<%= \"hi!\" %>" /> <mytags:tag value='<%= \"name\" %>' />

Attachments

openmrs-1019.patch (0.8 kB) - added by upul on 09/15/08 16:43:51.
missed nested double quotes fix

Change History

08/31/08 20:41:04 changed by dthomas

08/31/08 20:41:33 changed by dthomas

  • status changed from new to closed.
  • resolution set to fixed.

09/15/08 16:43:51 changed by upul

  • attachment openmrs-1019.patch added.

missed nested double quotes fix

09/15/08 16:45:26 changed by upul

  • status changed from closed to reopened.
  • resolution deleted.

One tiny little tag remains to be fixed. Patch attached.

09/15/08 16:49:52 changed by bwolfe

  • status changed from reopened to closed.
  • resolution set to fixed.

Ah, this was a copy/paste error by me. Thanks upul!

Patch applied in [5499]