Ticket #474 (closed defect: fixed)
QControlProxy Example broken in IE due to quotes in .tpl file
| Reported by: | kmeirlaen | Owned by: | somebody |
|---|---|---|---|
| Priority: | important | Milestone: | 1.0.3 Legacy Maintenance |
| Component: | Other | Version: | 1.0.2 Legacy Maintenance |
| Keywords: | Cc: |
Description
There are some quotes in the .tpl file that break the example in IE. It is the double quote after the php closing tag.
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Baz'); ?>">Baz</a> |
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Foo'); ?>">Foo</a> |
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Blah'); ?>">Blah</a> |
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Test'); ?>">Test</a>
This should become
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Baz'); ?>>Baz</a> |
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Foo'); ?>>Foo</a> |
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Blah'); ?>>Blah</a> |
<a href="#" <?php $this->pxyExample->RenderAsEvents?('Test'); ?>>Test</a>
