PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » HTML » HTML_QuickForm » Bug #5974

hierselect does not oprate html entities

Details

Submitted2005-11-15 21:45 UTC
Fromdobes at lnx dot cz
Assignedavb
StatusClosed
PackageHTML_QuickForm
PHP Version4.4.0
OSGentoo
Roadmaps(Not assigned)

Comments

[2005-11-15 21:45 UTC] dobes at lnx dot cz

Description:
------------
When you have in hierselect html entities like °. When it is this in default, displaying is OK, but if you can choose it, from hierselect menu, you can see the code of html entities (like °).

Test script:
---------------
<?php
require_once 'HTML/QuickForm.php';
$form = new HTML_QuickForm('example');

$select1[0] = '';
$select1[1] = 'Temperature';
$select1[2] = 'Ratio';
// second select
$select2[0][0] = '';
$select2[1][0] = '°C';
$select2[1][1] = '°F';
$select2[1][2] = '°R';
$select2[2][0] = '1';
$select2[2][1] = '%';
$select2[2][2] = '‰';

// Create the Element
$sel =& $form->addElement('hierselect', 'choose', 'Choose Units:');

// And add the selection options
$sel->setOptions(array($select1, $select2));

$form->display();
?>

Expected result:
----------------
correct display of html entities.

Actual result:
--------------
html entities in select form (in Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051013 Firefox/1.0.7).