<?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=I18Nv2</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/19632" />
      <rdf:li rdf:resource="http://pear.php.net/bug/15005" />
      <rdf:li rdf:resource="http://pear.php.net/bug/4271" />

     </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/19632">
      <title>I18Nv2: Bug 19632 [Open] Assigning the return value of new by reference is deprecated</title>
      <link>http://pear.php.net/bugs/19632</link>
      <content:encoded><![CDATA[<pre>I18Nv2 Bug
Reported by luti
2012-10-03T20:58:07+00:00
PHP: 5.3.16 OS: Linux Package Version: 0.11.4

Description:
------------
when including the script, the following PHP warning is generated: 
Assigning the return value of new by reference is deprecated on line 177
Assigning the return value of new by reference is deprecated on line 194

So, as the warning suggests, assigning the return value of new by reference is deprecated in PHP 5.3.16

Test script:
---------------
any call of function will do.

Expected result:
----------------
no warning

Actual result:
--------------
warning</pre>]]></content:encoded>
      <description><![CDATA[<pre>I18Nv2 Bug
Reported by luti
2012-10-03T20:58:07+00:00
PHP: 5.3.16 OS: Linux Package Version: 0.11.4

Description:
------------
when including the script, the following PHP warning is generated: 
Assigning the return value of new by reference is deprecated on line 177
Assigning the return value of new by reference is deprecated on line 194

So, as the warning suggests, assigning the return value of new by reference is deprecated in PHP 5.3.16

Test script:
---------------
any call of function will do.

Expected result:
----------------
no warning

Actual result:
--------------
warning</pre>]]></description>
      <dc:date>2012-10-03T20:58:07+00:00</dc:date>
      <dc:creator>admin2010 &amp;#x61;&amp;#116; luebker &amp;#x64;&amp;#111;&amp;#x74; org</dc:creator>
      <dc:subject>I18Nv2 Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/15005">
      <title>I18Nv2: Bug 15005 [Assigned] No output for date/time-formats (broken unit tests)</title>
      <link>http://pear.php.net/bugs/15005</link>
      <content:encoded><![CDATA[<pre>I18Nv2 Bug
Reported by petermueller
2008-11-12T15:26:40+00:00
PHP: 5.2.3 OS: Linux Package Version: 

Description:
------------
The date and time-methods don't produce any output.

Notices: dateFormats[], timeFormats[]-Arrays are not initialized.

Test script:
---------------
$locale = I18Nv2::createLocale('de_DE'); 
echo $locale-&gt;formatDate(time());

Expected result:
----------------
(Date formated with German locale.)

Actual result:
--------------
(nothing)</pre>]]></content:encoded>
      <description><![CDATA[<pre>I18Nv2 Bug
Reported by petermueller
2008-11-12T15:26:40+00:00
PHP: 5.2.3 OS: Linux Package Version: 

Description:
------------
The date and time-methods don't produce any output.

Notices: dateFormats[], timeFormats[]-Arrays are not initialized.

Test script:
---------------
$locale = I18Nv2::createLocale('de_DE'); 
echo $locale-&gt;formatDate(time());

Expected result:
----------------
(Date formated with German locale.)

Actual result:
--------------
(nothing)</pre>]]></description>
      <dc:date>2011-08-19T19:15:53+00:00</dc:date>
      <dc:creator>lyric680-web &amp;#x61;&amp;#116; yahoo &amp;#x64;&amp;#111;&amp;#x74; de</dc:creator>
      <dc:subject>I18Nv2 Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/4271">
      <title>I18Nv2: Feature/Change Request 4271 [Assigned] 2-Level lists and Regions</title>
      <link>http://pear.php.net/bugs/4271</link>
      <content:encoded><![CDATA[<pre>I18Nv2 Feature/Change Request
Reported by jausions
2005-05-03T17:01:18+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 

Description:
------------
Here are additional files that allow to do 2-level code support. i.e. sub-codes of a main code. I needed to do that to support regions for a country.

See http://www.11abacus.com/dev/pear/I18Nv2.zip

I've provided the region list for US, Canada and France in English and French.

Reproduce code:
---------------
// Pseudo-code

$US = new I18Nv2_Country_Region('US', 'en');
$statesEN = $US-&gt;getAllCodes();

$US-&gt;setLanguage('fr');
$statesFR = $US-&gt;getAllCodes();</pre>]]></content:encoded>
      <description><![CDATA[<pre>I18Nv2 Feature/Change Request
Reported by jausions
2005-05-03T17:01:18+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 

Description:
------------
Here are additional files that allow to do 2-level code support. i.e. sub-codes of a main code. I needed to do that to support regions for a country.

See http://www.11abacus.com/dev/pear/I18Nv2.zip

I've provided the region list for US, Canada and France in English and French.

Reproduce code:
---------------
// Pseudo-code

$US = new I18Nv2_Country_Region('US', 'en');
$statesEN = $US-&gt;getAllCodes();

$US-&gt;setLanguage('fr');
$statesFR = $US-&gt;getAllCodes();</pre>]]></description>
      <dc:date>2010-01-15T20:34:07+00:00</dc:date>
      <dc:creator>Philippe &amp;#x64;&amp;#111;&amp;#x74; Jausions &amp;#x61;&amp;#116; 11abacus &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>I18Nv2 Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
