[phplib-dev] cvs commit From: max (phplib-dev <email protected>)
Date: 02/26/01

From: max
Date: Mon Feb 26 09:30:19 2001
Modified files:
      php-lib/php/prepend.php3

Log message:
bugfix

Index: php-lib/php/prepend.php3
diff -u php-lib/php/prepend.php3:1.18 php-lib/php/prepend.php3:1.19
--- php-lib/php/prepend.php3:1.18 Fri Jan 5 10:26:12 2001
+++ php-lib/php/prepend.php3 Mon Feb 26 09:29:47 2001
@@ -5,7 +5,7 @@
  * Copyright (c) 1998-2000 SH Online Dienst GmbH
  * Boris Erdmann, Kristian Koehntopp
  *
- * $Id: prepend.php3,v 1.18 2001/01/05 09:26:12 max Exp $
+ * $Id: prepend.php3,v 1.19 2001/02/26 08:29:47 max Exp $
  *
  */
 
@@ -24,7 +24,7 @@
   $_PHPLIB["version"] = "4";
   
   # Do you intend to use custom session save handlers (PHP4 only) ?
- if ($PHPLIB["version"] == "4") { // do not change this
+ if ($_PHPLIB["version"] == "4") { // do not change this
     # set to true or false
     $_PHPLIB["custom_save_handler"] = false;
   }
@@ -49,7 +49,7 @@
 
 # Load user variables management class
 require($_PHPLIB["libdir"] . "user"
- . (($PHPLIB["version"] == "4") ? "4" : "") // use user4.inc if PHP4
+ . (($_PHPLIB["version"] == "4") ? "4" : "") // use user4.inc if PHP4
                            . ".inc");
 
 # Load additional classes for
@@ -62,4 +62,4 @@
 
 # Load page management functions
 require($_PHPLIB["libdir"] . "page.inc");
-?>
+?

---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-dev-unsubscribe <email protected>
For additional commands, e-mail: phplib-dev-help <email protected>