[geeklog-cvs] Geeklog-1.x/system lib-webservices.php,1.3,1.4

Dirk Haun dhaun at qs1489.pair.com
Fri Aug 24 07:17:09 EDT 2007


Update of /cvsroot/geeklog/Geeklog-1.x/system
In directory qs1489.pair.com:/tmp/cvs-serv93871/system

Modified Files:
	lib-webservices.php 
Log Message:
Fixed warning


Index: lib-webservices.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/system/lib-webservices.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** lib-webservices.php	19 Aug 2007 16:30:07 -0000	1.3
--- lib-webservices.php	24 Aug 2007 11:17:07 -0000	1.4
***************
*** 30,33 ****
--- 30,34 ----
  // +---------------------------------------------------------------------------+
  //
+ // $Id$
  
  if (strpos ($_SERVER['PHP_SELF'], 'lib-webservices.php') !== false) {
***************
*** 91,95 ****
          $uri_parts = explode('=', $param);
          $param_key = COM_applyFilter($uri_parts[0]);
!         $param_val = COM_applyFilter($uri_parts[1]);
  
          switch ($param_key) {
--- 92,98 ----
          $uri_parts = explode('=', $param);
          $param_key = COM_applyFilter($uri_parts[0]);
!         if (count($uri_parts) > 1) {
!             $param_val = COM_applyFilter($uri_parts[1]);
!         }
  
          switch ($param_key) {




More information about the geeklog-cvs mailing list