<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=HTML_QuickForm_ElementGrid</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/15982" />
      <rdf:li rdf:resource="http://pear.php.net/bug/13176" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/15982">
      <title>HTML_QuickForm_ElementGrid: Bug 15982 [Open] trouble with radio-buttons</title>
      <link>http://pear.php.net/bugs/15982</link>
      <content:encoded><![CDATA[<pre>HTML_QuickForm_ElementGrid Bug
Reported by ssa
2009-03-05T15:12:05+00:00
PHP: 5.2.1 OS: all Package Version: 

Description:
------------
        add two radiobuttons in a row and check for example the first. Then the exportet value for this button is not 1
but null. If you checked the last, then the exportet value is correct.

Test script:
---------------
       &lt;?php
require_once 'HTML/QuickForm/Controller.php';
require_once 'HTML/QuickForm/Action/Display.php';
require_once('HTML/QuickForm/ElementGrid.php');
session_start();
class Page_Account_Credentials extends HTML_QuickForm_Page
{
    function buildForm()
    {
       $this-&gt;_formBuilt = true;
        $elementGrid = $this-&gt;addElement('elementGrid', 'elementGrid', 'Element Grid',false);
        $elementGrid-&gt;addColumnName('Col2');
        $elementGrid-&gt;addColumnName('Col3');
		$rows = array();
		unset($row);
        $row = array();
        $row[] = HTML_QuickForm::createElement('radio',&quot;radio1&quot;,'radiotest','label1','1');
        $row[] = HTML_QuickForm::createElement('radio',&quot;radio1&quot;,'radiotest','label2','2');
       $rows[] =&amp; $row;
        $elementGrid-&gt;setRows($rows);
         $buttons[0] =&amp; HTML_QuickForm::createElement('button', 'cancel', 'Cancel');
        $buttons[1] =&amp; HTML_QuickForm::createElement('submit', $this-&gt;getButtonName('next'), 'Next step &gt;&gt;');
        $this-&gt;addGroup($buttons, 'buttons', '', '&amp;nbsp', false);
        $this-&gt;setDefaultAction('next');
    }
}

class ActionProcess extends HTML_QuickForm_Action
{
    function perform(&amp;$page, $actionName)
    {   
    $values = $page-&gt;controller-&gt;exportValues();
    echo &quot;&lt;pre&gt;&quot;;
    print_r($values);
    echo &quot;&lt;/pre&gt;&quot;;
    
    }
}

$wizard =&amp; new HTML_QuickForm_Controller('regWizard', true);
$wizard-&gt;addPage(new Page_Account_Credentials('page1'));
$wizard-&gt;addAction('process', new ActionProcess());
$wizard-&gt;run();
?&gt;
  

Expected result:
----------------
         when i checked the radiobutton &lt;label1&gt; and click to next, i would expect to see:

Array
(
    [radio1] =&gt; 1
)



Actual result:
--------------
         but I see:

Array
(
    [radio1] =&gt; 
)</pre>]]></content:encoded>
      <description><![CDATA[<pre>HTML_QuickForm_ElementGrid Bug
Reported by ssa
2009-03-05T15:12:05+00:00
PHP: 5.2.1 OS: all Package Version: 

Description:
------------
        add two radiobuttons in a row and check for example the first. Then the exportet value for this button is not 1
but null. If you checked the last, then the exportet value is correct.

Test script:
---------------
       &lt;?php
require_once 'HTML/QuickForm/Controller.php';
require_once 'HTML/QuickForm/Action/Display.php';
require_once('HTML/QuickForm/ElementGrid.php');
session_start();
class Page_Account_Credentials extends HTML_QuickForm_Page
{
    function buildForm()
    {
       $this-&gt;_formBuilt = true;
        $elementGrid = $this-&gt;addElement('elementGrid', 'elementGrid', 'Element Grid',false);
        $elementGrid-&gt;addColumnName('Col2');
        $elementGrid-&gt;addColumnName('Col3');
		$rows = array();
		unset($row);
        $row = array();
        $row[] = HTML_QuickForm::createElement('radio',&quot;radio1&quot;,'radiotest','label1','1');
        $row[] = HTML_QuickForm::createElement('radio',&quot;radio1&quot;,'radiotest','label2','2');
       $rows[] =&amp; $row;
        $elementGrid-&gt;setRows($rows);
         $buttons[0] =&amp; HTML_QuickForm::createElement('button', 'cancel', 'Cancel');
        $buttons[1] =&amp; HTML_QuickForm::createElement('submit', $this-&gt;getButtonName('next'), 'Next step &gt;&gt;');
        $this-&gt;addGroup($buttons, 'buttons', '', '&amp;nbsp', false);
        $this-&gt;setDefaultAction('next');
    }
}

class ActionProcess extends HTML_QuickForm_Action
{
    function perform(&amp;$page, $actionName)
    {   
    $values = $page-&gt;controller-&gt;exportValues();
    echo &quot;&lt;pre&gt;&quot;;
    print_r($values);
    echo &quot;&lt;/pre&gt;&quot;;
    
    }
}

$wizard =&amp; new HTML_QuickForm_Controller('regWizard', true);
$wizard-&gt;addPage(new Page_Account_Credentials('page1'));
$wizard-&gt;addAction('process', new ActionProcess());
$wizard-&gt;run();
?&gt;
  

Expected result:
----------------
         when i checked the radiobutton &lt;label1&gt; and click to next, i would expect to see:

Array
(
    [radio1] =&gt; 1
)



Actual result:
--------------
         but I see:

Array
(
    [radio1] =&gt; 
)</pre>]]></description>
      <dc:date>2009-03-05T15:12:05+00:00</dc:date>
      <dc:creator>sandmeier &amp;#x61;&amp;#116; prodata &amp;#x64;&amp;#111;&amp;#x74; de</dc:creator>
      <dc:subject>HTML_QuickForm_ElementGrid Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/13176">
      <title>HTML_QuickForm_ElementGrid: Bug 13176 [Verified] addRow using reference inappropriately</title>
      <link>http://pear.php.net/bugs/13176</link>
      <content:encoded><![CDATA[<pre>HTML_QuickForm_ElementGrid Bug
Reported by lovedub
2008-02-22T02:36:28+00:00
PHP: 5.2.0 OS: Debian Etch Package Version: 0.1.1

Description:
------------
When adding a row to an ElementGrid, the method addRow uses a reference to the row parameter. So if you're looping through a list of database results using one variable to produce a grid of elements, all rows are set to the last added row.

Test script:
---------------
require_once 'HTML/QuickForm.php';
$form = new HTML_QuickForm();

require_once 'HTML/QuickForm/ElementGrid.php';
$grid = new HTML_QuickForm_ElementGrid('test', 'Test');

for($index = 0; $index &lt; 5; $index++) {
  $row = array(
    $form-&gt;createElement('checkbox', 'ch'.$index.'1'),
    $form-&gt;createElement('checkbox', 'ch'.$index.'2')
  );
  $grid-&gt;addRow($row, &quot;Row $index&quot;);
}

$form-&gt;addElement($grid);

$form-&gt;display();


Expected result:
----------------
&lt;form action=&quot;/test.php&quot; method=&quot;post&quot; name=&quot;&quot; id=&quot;&quot;&gt;
&lt;div&gt;

&lt;table border=&quot;0&quot;&gt;

	&lt;tr&gt;
		&lt;td align=&quot;right&quot; valign=&quot;top&quot;&gt;&lt;b&gt;Test&lt;/b&gt;&lt;/td&gt;
		&lt;td valign=&quot;top&quot; align=&quot;left&quot;&gt;	&lt;table class=&quot;elementGrid&quot;&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 0&lt;/th&gt;

			&lt;td&gt;&lt;input name=&quot;ch01&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_7da1c8&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch02&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_2550d5&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 1&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch11&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_c11396&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch12&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_6dc9c1&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;

		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 2&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch21&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_dc7552&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch22&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_b07fb1&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 3&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch31&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_25608c&quot; /&gt;&lt;/td&gt;

			&lt;td&gt;&lt;input name=&quot;ch32&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_ebce21&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 4&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_3f162f&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_ea2523&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;

&lt;/table&gt;
&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/form&gt;

Actual result:
--------------
&lt;form action=&quot;/test.php&quot; method=&quot;post&quot; name=&quot;&quot; id=&quot;&quot;&gt;
&lt;div&gt;

&lt;table border=&quot;0&quot;&gt;

	&lt;tr&gt;
		&lt;td align=&quot;right&quot; valign=&quot;top&quot;&gt;&lt;b&gt;Test&lt;/b&gt;&lt;/td&gt;
		&lt;td valign=&quot;top&quot; align=&quot;left&quot;&gt;	&lt;table class=&quot;elementGrid&quot;&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 0&lt;/th&gt;

			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 1&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;

		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 2&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 3&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;

			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 4&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;

&lt;/table&gt;
&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/form&gt;</pre>]]></content:encoded>
      <description><![CDATA[<pre>HTML_QuickForm_ElementGrid Bug
Reported by lovedub
2008-02-22T02:36:28+00:00
PHP: 5.2.0 OS: Debian Etch Package Version: 0.1.1

Description:
------------
When adding a row to an ElementGrid, the method addRow uses a reference to the row parameter. So if you're looping through a list of database results using one variable to produce a grid of elements, all rows are set to the last added row.

Test script:
---------------
require_once 'HTML/QuickForm.php';
$form = new HTML_QuickForm();

require_once 'HTML/QuickForm/ElementGrid.php';
$grid = new HTML_QuickForm_ElementGrid('test', 'Test');

for($index = 0; $index &lt; 5; $index++) {
  $row = array(
    $form-&gt;createElement('checkbox', 'ch'.$index.'1'),
    $form-&gt;createElement('checkbox', 'ch'.$index.'2')
  );
  $grid-&gt;addRow($row, &quot;Row $index&quot;);
}

$form-&gt;addElement($grid);

$form-&gt;display();


Expected result:
----------------
&lt;form action=&quot;/test.php&quot; method=&quot;post&quot; name=&quot;&quot; id=&quot;&quot;&gt;
&lt;div&gt;

&lt;table border=&quot;0&quot;&gt;

	&lt;tr&gt;
		&lt;td align=&quot;right&quot; valign=&quot;top&quot;&gt;&lt;b&gt;Test&lt;/b&gt;&lt;/td&gt;
		&lt;td valign=&quot;top&quot; align=&quot;left&quot;&gt;	&lt;table class=&quot;elementGrid&quot;&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 0&lt;/th&gt;

			&lt;td&gt;&lt;input name=&quot;ch01&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_7da1c8&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch02&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_2550d5&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 1&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch11&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_c11396&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch12&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_6dc9c1&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;

		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 2&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch21&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_dc7552&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch22&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_b07fb1&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 3&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch31&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_25608c&quot; /&gt;&lt;/td&gt;

			&lt;td&gt;&lt;input name=&quot;ch32&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_ebce21&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 4&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_3f162f&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_ea2523&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;

&lt;/table&gt;
&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/form&gt;

Actual result:
--------------
&lt;form action=&quot;/test.php&quot; method=&quot;post&quot; name=&quot;&quot; id=&quot;&quot;&gt;
&lt;div&gt;

&lt;table border=&quot;0&quot;&gt;

	&lt;tr&gt;
		&lt;td align=&quot;right&quot; valign=&quot;top&quot;&gt;&lt;b&gt;Test&lt;/b&gt;&lt;/td&gt;
		&lt;td valign=&quot;top&quot; align=&quot;left&quot;&gt;	&lt;table class=&quot;elementGrid&quot;&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 0&lt;/th&gt;

			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 1&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;

		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 2&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 3&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;

			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th class=&quot;elementGridRowLabel&quot;&gt;Row 4&lt;/th&gt;
			&lt;td&gt;&lt;input name=&quot;ch41&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_0a55aa&quot; /&gt;&lt;/td&gt;
			&lt;td&gt;&lt;input name=&quot;ch42&quot; type=&quot;checkbox&quot; value=&quot;1&quot; id=&quot;qf_506528&quot; /&gt;&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;

&lt;/table&gt;
&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/form&gt;</pre>]]></description>
      <dc:date>2008-05-05T07:13:12+00:00</dc:date>
      <dc:creator>marlinf &amp;#x61;&amp;#116; datashaman &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>HTML_QuickForm_ElementGrid Bug</dc:subject>
    </item>
</rdf:RDF>
