[GRASSweb-list] markus: web parser.php,1.1,1.2 rss.php,1.1,1.2

grass at intevation.de grass at intevation.de
Tue Nov 7 04:57:22 EST 2006


Author: markus

Update of /grassrepository/web
In directory doto:/tmp/cvs-serv24628

Modified Files:
	parser.php rss.php 
Log Message:
hack for PHP3 on Canadian mirror

Index: parser.php
===================================================================
RCS file: /grassrepository/web/parser.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- parser.php	31 Oct 2006 22:25:18 -0000	1.1
+++ parser.php	7 Nov 2006 09:57:20 -0000	1.2
@@ -36,7 +36,11 @@
 /**
  * uses PEAR's error handling
  */
-require_once 'pear.php';
+
+/* MN: modified for PHP3 
+   require_once 'pear.php';
+ */
+include('pear.php');
 
 /**
  * resource could not be created

Index: rss.php
===================================================================
RCS file: /grassrepository/web/rss.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- rss.php	31 Oct 2006 22:25:18 -0000	1.1
+++ rss.php	7 Nov 2006 09:57:20 -0000	1.2
@@ -20,7 +20,10 @@
 // $Id$
 //
 
-require_once 'parser.php';
+/* MN: modified for PHP3
+   require_once 'parser.php';
+ */
+include('parser.php');
 
 /**
 * RSS parser class.
@@ -356,4 +359,5 @@
     // }}}
 
 }
-?>
\ No newline at end of file
+?>
+





More information about the grass-web mailing list