<?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=Config</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/16724" />
      <rdf:li rdf:resource="http://pear.php.net/bug/16656" />
      <rdf:li rdf:resource="http://pear.php.net/bug/16590" />
      <rdf:li rdf:resource="http://pear.php.net/bug/15964" />
      <rdf:li rdf:resource="http://pear.php.net/bug/13791" />
      <rdf:li rdf:resource="http://pear.php.net/bug/13116" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12388" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12387" />
      <rdf:li rdf:resource="http://pear.php.net/bug/12291" />
      <rdf:li rdf:resource="http://pear.php.net/bug/11827" />

     </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/16724">
      <title>Config: Feature/Change Request 16724 [Open] PHPConstants container should have option lowercase</title>
      <link>http://pear.php.net/bugs/16724</link>
      <content:encoded><![CDATA[<pre>Config Feature/Change Request
Reported by lsolesen
2009-10-22T08:07:35+00:00
PHP: 5.2.5 OS: ubuntu Package Version: 1.10.11

Description:
------------
It should be possible to get keys of the array from the PHPConstants container in lowercase.</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Feature/Change Request
Reported by lsolesen
2009-10-22T08:07:35+00:00
PHP: 5.2.5 OS: ubuntu Package Version: 1.10.11

Description:
------------
It should be possible to get keys of the array from the PHPConstants container in lowercase.</pre>]]></description>
      <dc:date>2009-10-22T08:07:35+00:00</dc:date>
      <dc:creator>lars &amp;#x61;&amp;#116; legestue &amp;#x64;&amp;#111;&amp;#x74; net</dc:creator>
      <dc:subject>Config Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/16656">
      <title>Config: Feature/Change Request 16656 [Open] New 'linebreak' option for IniCommented container</title>
      <link>http://pear.php.net/bugs/16656</link>
      <content:encoded><![CDATA[<pre>Config Feature/Change Request
Reported by wiesemann
2009-09-29T09:42:11+00:00
PHP: Irrelevant OS:  Package Version: 1.10.11

Description:
------------
The attached patch adds a new 'linebreak' option (default value: &quot;\n&quot;) to the IniCommented container.

The patch also adds error handling for a failure of the file() call.</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Feature/Change Request
Reported by wiesemann
2009-09-29T09:42:11+00:00
PHP: Irrelevant OS:  Package Version: 1.10.11

Description:
------------
The attached patch adds a new 'linebreak' option (default value: &quot;\n&quot;) to the IniCommented container.

The patch also adds error handling for a failure of the file() call.</pre>]]></description>
      <dc:date>2009-09-29T10:09:36+00:00</dc:date>
      <dc:creator>wiesemann &amp;#x61;&amp;#116; php &amp;#x64;&amp;#111;&amp;#x74; net</dc:creator>
      <dc:subject>Config Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/16590">
      <title>Config: Bug 16590 [Open] parseConfig phparray ignores named arrays that use numbers as name</title>
      <link>http://pear.php.net/bugs/16590</link>
      <content:encoded><![CDATA[<pre>Config Bug
Reported by circalucid
2009-09-10T15:42:09+00:00
PHP: 5.2.5 OS: Ubuntu 9.04 Package Version: 1.10.11

Description:
------------
I'm not entirely sure this is a bug or an intended behavior in PHP but when I create an array and assign a number as the first element's name, I get a sequential array after passing this array to parseConfig. If the first element is a string, everything works kosher whether any of the following names are a string or number.

I'm using a workaround prefix but is this a bug?

Test script:
---------------
&lt;?php
  include(&quot;Config.php&quot;);
  $conf2 = array(
    'DB' =&gt; array(
        '203' =&gt; 'mysql',
        'host' =&gt; 'localhost',
        'user' =&gt; 'root',
        'pass' =&gt; 'root'
     )
  );
  $conf2 = array('root' =&gt; $conf2);
  print_r($conf2['root']['DB']);
  
  $c = new Config();
  $arr_read =&amp; $c-&gt;parseConfig($conf2['root'],'phparray');
  $arr_read = $arr_read-&gt;toArray();
  if (PEAR::isError($arr_read)){die('Dote'.&quot;\n&quot;);}
  print_r($arr_read['root']['DB']);
  unset($arr_read);
?&gt;

Expected result:
----------------
Array
(
    [203] =&gt; mysql
    [host] =&gt; localhost
    [user] =&gt; root
    [pass] =&gt; root
)
Array
(
    [0] =&gt; mysql
    [1] =&gt; localhost
    [2] =&gt; root
    [3] =&gt; root
)


Actual result:
--------------
Array
(
    [203] =&gt; mysql
    [host] =&gt; localhost
    [user] =&gt; root
    [pass] =&gt; root
)
Array
(
    [203] =&gt; mysql
    [host] =&gt; localhost
    [user] =&gt; root
    [pass] =&gt; root
)</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Bug
Reported by circalucid
2009-09-10T15:42:09+00:00
PHP: 5.2.5 OS: Ubuntu 9.04 Package Version: 1.10.11

Description:
------------
I'm not entirely sure this is a bug or an intended behavior in PHP but when I create an array and assign a number as the first element's name, I get a sequential array after passing this array to parseConfig. If the first element is a string, everything works kosher whether any of the following names are a string or number.

I'm using a workaround prefix but is this a bug?

Test script:
---------------
&lt;?php
  include(&quot;Config.php&quot;);
  $conf2 = array(
    'DB' =&gt; array(
        '203' =&gt; 'mysql',
        'host' =&gt; 'localhost',
        'user' =&gt; 'root',
        'pass' =&gt; 'root'
     )
  );
  $conf2 = array('root' =&gt; $conf2);
  print_r($conf2['root']['DB']);
  
  $c = new Config();
  $arr_read =&amp; $c-&gt;parseConfig($conf2['root'],'phparray');
  $arr_read = $arr_read-&gt;toArray();
  if (PEAR::isError($arr_read)){die('Dote'.&quot;\n&quot;);}
  print_r($arr_read['root']['DB']);
  unset($arr_read);
?&gt;

Expected result:
----------------
Array
(
    [203] =&gt; mysql
    [host] =&gt; localhost
    [user] =&gt; root
    [pass] =&gt; root
)
Array
(
    [0] =&gt; mysql
    [1] =&gt; localhost
    [2] =&gt; root
    [3] =&gt; root
)


Actual result:
--------------
Array
(
    [203] =&gt; mysql
    [host] =&gt; localhost
    [user] =&gt; root
    [pass] =&gt; root
)
Array
(
    [203] =&gt; mysql
    [host] =&gt; localhost
    [user] =&gt; root
    [pass] =&gt; root
)</pre>]]></description>
      <dc:date>2009-09-10T15:48:18+00:00</dc:date>
      <dc:creator>pear &amp;#x61;&amp;#116; kitik1 &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>Config Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/15964">
      <title>Config: Bug 15964 [Verified] errors in test suite</title>
      <link>http://pear.php.net/bugs/15964</link>
      <content:encoded><![CDATA[<pre>Config Bug
Reported by bjohnson
2009-03-01T17:03:23+00:00
PHP: 5.2.8 OS: Linux/Fedora Package Version: 

Description:
------------
      # pear run-tests -p Config
Running 16 tests
...
FAIL [ 3/16] test for bug 3051[/usr/share/pear/test/Config/test/bug3051.phpt]
...
FAIL [16/16] regression test for bug
#10185[/usr/share/pear/test/Config/test/bug10185.phpt]
wrote log to &quot;/root/run-tests.log&quot;
TOTAL TIME: 00:01
14 PASSED TESTS
0 SKIPPED TESTS
2 FAILED TESTS:
/usr/share/pear/test/Config/test/bug3051.phpt
/usr/share/pear/test/Config/test/bug10185.phpt

Test script:
---------------
      

Expected result:
----------------
      

Actual result:
--------------
   no failure when running test suite</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Bug
Reported by bjohnson
2009-03-01T17:03:23+00:00
PHP: 5.2.8 OS: Linux/Fedora Package Version: 

Description:
------------
      # pear run-tests -p Config
Running 16 tests
...
FAIL [ 3/16] test for bug 3051[/usr/share/pear/test/Config/test/bug3051.phpt]
...
FAIL [16/16] regression test for bug
#10185[/usr/share/pear/test/Config/test/bug10185.phpt]
wrote log to &quot;/root/run-tests.log&quot;
TOTAL TIME: 00:01
14 PASSED TESTS
0 SKIPPED TESTS
2 FAILED TESTS:
/usr/share/pear/test/Config/test/bug3051.phpt
/usr/share/pear/test/Config/test/bug10185.phpt

Test script:
---------------
      

Expected result:
----------------
      

Actual result:
--------------
   no failure when running test suite</pre>]]></description>
      <dc:date>2009-08-25T06:56:02+00:00</dc:date>
      <dc:creator>bjohnson80498 &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>Config Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/13791">
      <title>Config: Feature/Change Request 13791 [Open] Options for the PHPConstants container</title>
      <link>http://pear.php.net/bugs/13791</link>
      <content:encoded><![CDATA[<pre>Config Feature/Change Request
Reported by lucor
2008-04-28T12:45:28+00:00
PHP: Irrelevant OS: Irrilevant Package Version: CVS

Description:
------------
It could be useful to set via options the possibility to add a comment and use double quote instead of single quote.
In attach a patch allows this passing the following options to the writeConfig method:
- use_double_quote = true -&gt; enable the double quote;
- comment = some text -&gt; add a custom comment.</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Feature/Change Request
Reported by lucor
2008-04-28T12:45:28+00:00
PHP: Irrelevant OS: Irrilevant Package Version: CVS

Description:
------------
It could be useful to set via options the possibility to add a comment and use double quote instead of single quote.
In attach a patch allows this passing the following options to the writeConfig method:
- use_double_quote = true -&gt; enable the double quote;
- comment = some text -&gt; add a custom comment.</pre>]]></description>
      <dc:date>2008-04-28T12:45:28+00:00</dc:date>
      <dc:creator>lu &amp;#x64;&amp;#111;&amp;#x74; corbo &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>Config Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/13116">
      <title>Config: Bug 13116 [Verified] Syntax Strict notice for references on constructors</title>
      <link>http://pear.php.net/bugs/13116</link>
      <content:encoded><![CDATA[<pre>Config Bug
Reported by tomdesp
2008-02-13T13:03:01+00:00
PHP: 5.1.6 OS: all Package Version: 1.10.11

Description:
------------
Config constructor will try to to reference a container after new construction, thus will throw a E_STRICT error in PHP5.

Let's recall it has no effect and is deprecated. Code should be updated as all other major packages have already been on this point.

Test script:
---------------
&lt;?php
error_reporting(E_STRICT);
include &quot;Config.php&quot;;
?&gt;

Actual result:
--------------
Strict standards: Assigning the return value of new by reference is deprecated in c:\wamp\php\PEAR\Config.php on line 80

Strict standards: Assigning the return value of new by reference is deprecated in c:\wamp\php\PEAR\Config.php on line 166

Strict standards: Assigning the return value of new by reference is deprecated in c:\wamp\php\PEAR\Config\Container.php on line 111</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Bug
Reported by tomdesp
2008-02-13T13:03:01+00:00
PHP: 5.1.6 OS: all Package Version: 1.10.11

Description:
------------
Config constructor will try to to reference a container after new construction, thus will throw a E_STRICT error in PHP5.

Let's recall it has no effect and is deprecated. Code should be updated as all other major packages have already been on this point.

Test script:
---------------
&lt;?php
error_reporting(E_STRICT);
include &quot;Config.php&quot;;
?&gt;

Actual result:
--------------
Strict standards: Assigning the return value of new by reference is deprecated in c:\wamp\php\PEAR\Config.php on line 80

Strict standards: Assigning the return value of new by reference is deprecated in c:\wamp\php\PEAR\Config.php on line 166

Strict standards: Assigning the return value of new by reference is deprecated in c:\wamp\php\PEAR\Config\Container.php on line 111</pre>]]></description>
      <dc:date>2008-05-14T07:50:37+00:00</dc:date>
      <dc:creator>despoix &amp;#x61;&amp;#116; openxtrem &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>Config Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12388">
      <title>Config: Bug 12388 [Open] GenericConf doesn't allow whitepace to left of directive delimiter</title>
      <link>http://pear.php.net/bugs/12388</link>
      <content:encoded><![CDATA[<pre>Config Bug
Reported by paleozogt
2007-11-06T00:04:16+00:00
PHP: 4.4.7 OS: irrelevant Package Version: 1.10.11

Description:
------------
GenericConf doesn't allow whitespace to the left of the directive delimiter (the 'equals' option).

For example, this is valid:
  keyword:     value
but this is not
  keyword :value

The regex used in GenericConf allows for any amount of whitespace to the *right* of the delimiter (&quot;\s*&quot;) but doesn't allow for any on the *left* side of the delimiter.

Test script:
---------------
function demobug() {
   // this will fail unless you remove the 
   // space to the left of the colon
   $configtext= &quot;keyword : value&quot;;

   $testfile=&quot;/tmp/testconfig.conf&quot;;
   $file = fopen($testfile, &quot;w&quot;);
   fwrite($file, $configtext);
   fclose($file);

   $c = new Config();
   $conf=&amp; $c-&gt;parseConfig($testfile, &quot;GenericConf&quot;);

   echo $conf-&gt;toString('GenericConf', $options);
}


Expected result:
----------------
It should display &quot;keyword:value&quot;.


Actual result:
--------------
Instead it displays, &quot;[pear_error: message=&quot;Syntax error in '/tmp/testconfig.conf' at line 1.&quot; code=0 mode=return level=notice prefix=&quot;&quot; info=&quot;&quot;]&quot;</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Bug
Reported by paleozogt
2007-11-06T00:04:16+00:00
PHP: 4.4.7 OS: irrelevant Package Version: 1.10.11

Description:
------------
GenericConf doesn't allow whitespace to the left of the directive delimiter (the 'equals' option).

For example, this is valid:
  keyword:     value
but this is not
  keyword :value

The regex used in GenericConf allows for any amount of whitespace to the *right* of the delimiter (&quot;\s*&quot;) but doesn't allow for any on the *left* side of the delimiter.

Test script:
---------------
function demobug() {
   // this will fail unless you remove the 
   // space to the left of the colon
   $configtext= &quot;keyword : value&quot;;

   $testfile=&quot;/tmp/testconfig.conf&quot;;
   $file = fopen($testfile, &quot;w&quot;);
   fwrite($file, $configtext);
   fclose($file);

   $c = new Config();
   $conf=&amp; $c-&gt;parseConfig($testfile, &quot;GenericConf&quot;);

   echo $conf-&gt;toString('GenericConf', $options);
}


Expected result:
----------------
It should display &quot;keyword:value&quot;.


Actual result:
--------------
Instead it displays, &quot;[pear_error: message=&quot;Syntax error in '/tmp/testconfig.conf' at line 1.&quot; code=0 mode=return level=notice prefix=&quot;&quot; info=&quot;&quot;]&quot;</pre>]]></description>
      <dc:date>2007-11-06T00:04:16+00:00</dc:date>
      <dc:creator>pear &amp;#x61;&amp;#116; j9ac9k &amp;#x64;&amp;#111;&amp;#x74; info</dc:creator>
      <dc:subject>Config Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12387">
      <title>Config: Bug 12387 [Open] GenericConf doesn't allow for hyphens on left-hand-side of a directive</title>
      <link>http://pear.php.net/bugs/12387</link>
      <content:encoded><![CDATA[<pre>Config Bug
Reported by paleozogt
2007-11-05T23:53:08+00:00
PHP: 4.4.7 OS: irrelavent Package Version: 1.10.11

Description:
------------
The GenericConf format doesn't allow hyphens on the LHS of a directive.  For example, this is valid:
  key_word:value
but this is not
  key-word:value

The underscore is allowed because the regexp used is &quot;\w&quot;, which includes alphanumeric and underscores.  To support hyphen, a hyphen must be explicitly included in the regexp.


Test script:
---------------
function demobug() {
   // this will fail unless you remove the hyphen
   $configtext= &quot;key-word:value&quot;;

   $testfile=&quot;/tmp/testconfig.conf&quot;;
   $file = fopen($testfile, &quot;w&quot;);
   fwrite($file, $configtext);
   fclose($file);

   $c = new Config();
   $conf=&amp; $c-&gt;parseConfig($testfile, &quot;GenericConf&quot;);

   echo $conf-&gt;toString('GenericConf', $options);
}

Expected result:
----------------
it should display, &quot;keyword:value&quot;

Actual result:
--------------
it displays, &quot;[pear_error: message=&quot;Syntax error in '/tmp/testconfig.conf' at line 1.&quot; code=0 mode=return level=notice prefix=&quot;&quot; info=&quot;&quot;]&quot;</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Bug
Reported by paleozogt
2007-11-05T23:53:08+00:00
PHP: 4.4.7 OS: irrelavent Package Version: 1.10.11

Description:
------------
The GenericConf format doesn't allow hyphens on the LHS of a directive.  For example, this is valid:
  key_word:value
but this is not
  key-word:value

The underscore is allowed because the regexp used is &quot;\w&quot;, which includes alphanumeric and underscores.  To support hyphen, a hyphen must be explicitly included in the regexp.


Test script:
---------------
function demobug() {
   // this will fail unless you remove the hyphen
   $configtext= &quot;key-word:value&quot;;

   $testfile=&quot;/tmp/testconfig.conf&quot;;
   $file = fopen($testfile, &quot;w&quot;);
   fwrite($file, $configtext);
   fclose($file);

   $c = new Config();
   $conf=&amp; $c-&gt;parseConfig($testfile, &quot;GenericConf&quot;);

   echo $conf-&gt;toString('GenericConf', $options);
}

Expected result:
----------------
it should display, &quot;keyword:value&quot;

Actual result:
--------------
it displays, &quot;[pear_error: message=&quot;Syntax error in '/tmp/testconfig.conf' at line 1.&quot; code=0 mode=return level=notice prefix=&quot;&quot; info=&quot;&quot;]&quot;</pre>]]></description>
      <dc:date>2007-11-05T23:53:08+00:00</dc:date>
      <dc:creator>pear &amp;#x61;&amp;#116; j9ac9k &amp;#x64;&amp;#111;&amp;#x74; info</dc:creator>
      <dc:subject>Config Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/12291">
      <title>Config: Bug 12291 [Verified] PEAR GenericConf newline shouldn't need a space</title>
      <link>http://pear.php.net/bugs/12291</link>
      <content:encoded><![CDATA[<pre>Config Bug
Reported by paleozogt
2007-10-22T03:38:55+00:00
PHP: 4.4.7 OS:  Package Version: 1.10.11

Description:
------------
Config's 'GenericConf' *requires* the newline delimiter to be prefixed by a space.  There are many valid configuration files out there that do not use a space.

For example, this file will be parse successfully (notice the space preceeding the '\'):

1       keyword:value1, \
2       value2

while this one will not (notice there's no space preceeding the '\'):

1       keyword:value1,\
2       value2



Test script:
---------------
function demobug() {
   // if you add a space right before the \\ it will work
   // otherwise it will fail
   $configtext= &quot;keyword:value1,\\\nvalue2&quot;;

   $testfile=&quot;testconfig.conf&quot;;
   $file = fopen ($testfile, &quot;w&quot;);
   fwrite($file, $configtext);
   fclose ($file);

   $c = new Config();
   $conf=&amp; $c-&gt;parseConfig($testfile, &quot;GenericConf&quot;);

   echo $conf-&gt;toString('GenericConf', $options);
}

Expected result:
----------------
Should print 'keyword:value1, value2'

Actual result:
--------------
Prints '[pear_error: message=&quot;Syntax error in 'testconfig.conf' at line 2.&quot; code=0 mode=return level=notice prefix=&quot;&quot; info=&quot;&quot;]'</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Bug
Reported by paleozogt
2007-10-22T03:38:55+00:00
PHP: 4.4.7 OS:  Package Version: 1.10.11

Description:
------------
Config's 'GenericConf' *requires* the newline delimiter to be prefixed by a space.  There are many valid configuration files out there that do not use a space.

For example, this file will be parse successfully (notice the space preceeding the '\'):

1       keyword:value1, \
2       value2

while this one will not (notice there's no space preceeding the '\'):

1       keyword:value1,\
2       value2



Test script:
---------------
function demobug() {
   // if you add a space right before the \\ it will work
   // otherwise it will fail
   $configtext= &quot;keyword:value1,\\\nvalue2&quot;;

   $testfile=&quot;testconfig.conf&quot;;
   $file = fopen ($testfile, &quot;w&quot;);
   fwrite($file, $configtext);
   fclose ($file);

   $c = new Config();
   $conf=&amp; $c-&gt;parseConfig($testfile, &quot;GenericConf&quot;);

   echo $conf-&gt;toString('GenericConf', $options);
}

Expected result:
----------------
Should print 'keyword:value1, value2'

Actual result:
--------------
Prints '[pear_error: message=&quot;Syntax error in 'testconfig.conf' at line 2.&quot; code=0 mode=return level=notice prefix=&quot;&quot; info=&quot;&quot;]'</pre>]]></description>
      <dc:date>2008-05-14T07:44:05+00:00</dc:date>
      <dc:creator>pear &amp;#x61;&amp;#116; j9ac9k &amp;#x64;&amp;#111;&amp;#x74; info</dc:creator>
      <dc:subject>Config Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/11827">
      <title>Config: Feature/Change Request 11827 [Open] notice when using arrays (directive[]=value) in inifiles</title>
      <link>http://pear.php.net/bugs/11827</link>
      <content:encoded><![CDATA[<pre>Config Feature/Change Request
Reported by mad
2007-08-13T02:38:58+00:00
PHP: 5.1.6 OS: linux gentoo Package Version: 1.10.11

Description:
------------
When you are using iniFile which looks like

[section]
directive[] = value1
directive[] = value2

Its correctly parsed as an array
array( 'section' =&gt; array( 'directive' =&gt; array( value1, value2 ) ) )

But there are some notices about converting array to string.</pre>]]></content:encoded>
      <description><![CDATA[<pre>Config Feature/Change Request
Reported by mad
2007-08-13T02:38:58+00:00
PHP: 5.1.6 OS: linux gentoo Package Version: 1.10.11

Description:
------------
When you are using iniFile which looks like

[section]
directive[] = value1
directive[] = value2

Its correctly parsed as an array
array( 'section' =&gt; array( 'directive' =&gt; array( value1, value2 ) ) )

But there are some notices about converting array to string.</pre>]]></description>
      <dc:date>2007-08-13T02:38:58+00:00</dc:date>
      <dc:creator>theend &amp;#x61;&amp;#116; life &amp;#x64;&amp;#111;&amp;#x74; pl</dc:creator>
      <dc:subject>Config Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
