[PHP-DOC] cvs: phpdoc /scripts missing-entities.php.in From: Gabor Hojtsy (gabor <email protected>)
Date: 08/08/02

goba Thu Aug 8 05:54:21 2002 EDT

  Modified files:
    /phpdoc/scripts missing-entities.php.in
  Log:
  Win-fix for the linux fix. str_replace does not modify the string,
  but it returns it... The build system now works well on windows...
  
  
Index: phpdoc/scripts/missing-entities.php.in
diff -u phpdoc/scripts/missing-entities.php.in:1.6 phpdoc/scripts/missing-entities.php.in:1.7
--- phpdoc/scripts/missing-entities.php.in:1.6 Wed Aug 7 07:29:26 2002
+++ phpdoc/scripts/missing-entities.php.in Thu Aug 8 05:54:21 2002
@@ -17,7 +17,7 @@
 # | Gabor Hojtsy <goba <email protected>> |
 # +----------------------------------------------------------------------+
 #
-# $Id: missing-entities.php.in,v 1.6 2002/08/07 11:29:26 hholzgra Exp $
+# $Id: missing-entities.php.in,v 1.7 2002/08/08 09:54:21 goba Exp $
 */
 
 // Print out info for the viewer and log files
@@ -34,7 +34,7 @@
 
 // Support for Windows systems
 if (substr(PHP_OS, 0, 3) == 'WIN') {
- $NSGMLS = " <email protected>@"; str_replace("/", "\\", "$NSGMLS");
+ $NSGMLS = str_replace("/", "\\", "$NSGMLS");
 }
 
 // Execute a test of the manual

-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php