<?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=Calendar</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/17524" />

     </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/17524">
      <title>Calendar: Feature/Change Request 17524 [Open] Use static keyword for static methods</title>
      <link>http://pear.php.net/bugs/17524</link>
      <content:encoded><![CDATA[<pre>Calendar Feature/Change Request
Reported by bindzus
2010-06-26T23:42:21+00:00
PHP: 5.3.2 OS: Windows Vista Package Version: 0.5.5

Description:
------------
Running the first example given in the documentation 
generates a lot of Strict Standards errors:

Strict Standards: Non-static method 
Calendar_Engine_Factory::getEngine() should not be 
called statically, assuming $this from incompatible 
context in C:\src\web 
applications\php\common\libs\pear\PEAR\Calendar\Calen
dar.php on line 211


Test script:
---------------
&lt;?php
require_once 'Calendar/Month.php';
require_once 'Calendar/Month/Weekdays.php';
$Month = new Calendar_Month(2003, 10); // October 2003
$Month-&gt;build(); // Build the days in the month
// Loop through the days...
while ($Day = $Month-&gt;fetch()) {
    echo $Day-&gt;thisDay().'&lt;br /&gt;';
}
$Month = new Calendar_Month_Weekdays(date('Y'), date('n'));
$Month-&gt;build();
?&gt;

Expected result:
----------------
When running the script above I expect to see the dates for 
October 2003 listed one date per line.

Actual result:
--------------
I do see the dates but I also get a lot of Strict Standards 
errors because of my error report settings in php.ini:

error_reporting = E_ALL | E_STRICT

So I have added static to the method getEngine declared 
in the class Calendar_Engine_Factory.

I hope that future versions of the Calendar package will 
include the keyword static on static methods, so I can 
keep my php.ini and also so I do not have to modify the 
package after upgrading.</pre>]]></content:encoded>
      <description><![CDATA[<pre>Calendar Feature/Change Request
Reported by bindzus
2010-06-26T23:42:21+00:00
PHP: 5.3.2 OS: Windows Vista Package Version: 0.5.5

Description:
------------
Running the first example given in the documentation 
generates a lot of Strict Standards errors:

Strict Standards: Non-static method 
Calendar_Engine_Factory::getEngine() should not be 
called statically, assuming $this from incompatible 
context in C:\src\web 
applications\php\common\libs\pear\PEAR\Calendar\Calen
dar.php on line 211


Test script:
---------------
&lt;?php
require_once 'Calendar/Month.php';
require_once 'Calendar/Month/Weekdays.php';
$Month = new Calendar_Month(2003, 10); // October 2003
$Month-&gt;build(); // Build the days in the month
// Loop through the days...
while ($Day = $Month-&gt;fetch()) {
    echo $Day-&gt;thisDay().'&lt;br /&gt;';
}
$Month = new Calendar_Month_Weekdays(date('Y'), date('n'));
$Month-&gt;build();
?&gt;

Expected result:
----------------
When running the script above I expect to see the dates for 
October 2003 listed one date per line.

Actual result:
--------------
I do see the dates but I also get a lot of Strict Standards 
errors because of my error report settings in php.ini:

error_reporting = E_ALL | E_STRICT

So I have added static to the method getEngine declared 
in the class Calendar_Engine_Factory.

I hope that future versions of the Calendar package will 
include the keyword static on static methods, so I can 
keep my php.ini and also so I do not have to modify the 
package after upgrading.</pre>]]></description>
      <dc:date>2010-06-26T23:42:21+00:00</dc:date>
      <dc:creator>bindzus &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>Calendar Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
