cvs: pear /Services_Weather package2.xml /Services_Weather/Weather Weatherdotcom.php

[email protected] ("Alexander Wirtz") Sat, 10 May 2008 20:35:30 -0000
Newsgroups php.pear.cvs
Message-ID <cvseru1210451730@cvsserver>
eru		Sat May 10 20:35:30 2008 UTC

  Modified files:              
    /pear/Services_Weather	package2.xml 
    /pear/Services_Weather/Weather	Weatherdotcom.php 
  Log:
  - Weatherdotcom.php
      o Fixed Bug #13845: Weather.com service requires link request in all xoap requests (mscannel)
  
  
  
http://cvs.php.net/viewvc.cgi/pear/Services_Weather/package2.xml?r1=1.4&r2=1.5&diff_format=u
Index: pear/Services_Weather/package2.xml
diff -u pear/Services_Weather/package2.xml:1.4 pear/Services_Weather/package2.xml:1.5
--- pear/Services_Weather/package2.xml:1.4	Mon Apr 16 10:35:33 2007
+++ pear/Services_Weather/package2.xml	Sat May 10 20:35:30 2008
@@ -21,10 +21,10 @@
         <active>yes</active>
     </lead>
     <!-- Copy to changelog -->
-    <date>2007-04-16</date>
+    <date>2008-05-10</date>
     <version>
-        <release>1.4.1</release>
-        <api>1.4.1</api>
+        <release>1.4.3</release>
+        <api>1.4.3</api>
     </version>
     <stability>
         <release>stable</release>
@@ -32,10 +32,8 @@
     </stability>
     <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License</license>
     <notes>
-        -package2.xml
-            o Added dependencies ctype and pcre to accomodate Gentoo (cweiske)
         - Weatherdotcom.php
-            o Fixed Bug #9471 Undefined variable ($searchReturn)
+            o Fixed Bug #13845: Weather.com service requires link request in all xoap requests (mscannel)
     </notes>
     <!-- /Copy to changelog -->
     <contents>
http://cvs.php.net/viewvc.cgi/pear/Services_Weather/Weather/Weatherdotcom.php?r1=1.61&r2=1.62&diff_format=u
Index: pear/Services_Weather/Weather/Weatherdotcom.php
diff -u pear/Services_Weather/Weather/Weatherdotcom.php:1.61 pear/Services_Weather/Weather/Weatherdotcom.php:1.62
--- pear/Services_Weather/Weather/Weatherdotcom.php:1.61	Mon Apr 16 10:36:05 2007
+++ pear/Services_Weather/Weather/Weatherdotcom.php	Sat May 10 20:35:30 2008
@@ -40,7 +40,7 @@
  * @author      Alexander Wirtz <[email protected]>
  * @copyright   2005-2007 Alexander Wirtz
  * @license     http://www.opensource.org/licenses/bsd-license.php  BSD License
- * @version     CVS: $Id: Weatherdotcom.php,v 1.61 2007/04/16 10:36:05 eru Exp $
+ * @version     CVS: $Id: Weatherdotcom.php,v 1.62 2008/05/10 20:35:30 eru Exp $
  * @link        http://pear.php.net/package/Services_Weather
  * @link        http://www.weather.com/services/xmloap.html
  * @example     examples/weather.com-basic.php      weather.com-basic.php
@@ -245,7 +245,7 @@
             $reqType = "all";
         }
 
-        $url = "http://xoap.weather.com/weather/local/".$id."?prod=xoap&par=".$this->_partnerID."&key=".$this->_licenseKey;
+        $url = "http://xoap.weather.com/weather/local/".$id."?link=xoap&prod=xoap&par=".$this->_partnerID."&key=".$this->_licenseKey;
 
         switch ($reqType) {
             case "links":