From 1ddb2ebc00ad941ff031aa78d9b6c92978ea99e5 Mon Sep 17 00:00:00 2001 From: Stefan Livieratos Date: Wed, 5 Jul 2000 10:24:17 +0000 Subject: [PATCH] Fixed typos git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@27711 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 4 ++-- chapters/install.xml | 4 ++-- features/http-auth.xml | 2 +- features/remote-files.xml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/chapters/config.xml b/chapters/config.xml index ce0955f09f..5707a15538 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -475,11 +475,11 @@ include_path=".;c:\www\phplib" - Tells whether the short form (<? ?>of + Tells whether the short form (<? ?>of PHP's open tag should be allowed. If you want to use PHP in combination with XML, you have to disable this option. If disabled, you must use the long form of the open tag - (<?php ?>). + (<?php ?>). diff --git a/chapters/install.xml b/chapters/install.xml index 7412b74e60..576090062b 100644 --- a/chapters/install.xml +++ b/chapters/install.xml @@ -819,7 +819,7 @@ This install guide will help you install and configure PHP on your Windows 9x/NT webservers. This guide was compiled by &link.bob;. The latest revision can be found at &url.win32install. + url="&url.win32install;">&url.win32install;. This guide provides installation support for: @@ -897,7 +897,7 @@ to load these modules. Some modules require you to have additional libraries installed on your system for the module to work correctly. The PHP FAQ has more information on + url="&url.php.faq;">FAQ has more information on where to get supporting libraries. You can also load a module dynamically in your script using: dl("php_*.dll"); diff --git a/features/http-auth.xml b/features/http-auth.xml index f9bf4bcd02..a87441e523 100644 --- a/features/http-auth.xml +++ b/features/http-auth.xml @@ -78,7 +78,7 @@ exit; } - if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 && !strcmp($OldAuth, $PHP_AUTH_USER)) ) { + if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 && !strcmp($OldAuth, $PHP_AUTH_USER)) ) { authenticate(); } else { diff --git a/features/remote-files.xml b/features/remote-files.xml index fd3a7d77ee..6248e941e2 100644 --- a/features/remote-files.xml +++ b/features/remote-files.xml @@ -25,7 +25,7 @@ Getting the title of a remote page -<?php +<?php $file = fopen("http://www.php.net/", "r"); if (!$file) { echo "<p>Unable to open remote file.\n"; @@ -57,7 +57,7 @@ Storing data on a remote server -<?php +<?php $file = fopen("ftp://ftp.php.net/incoming/outputfile", "w"); if (!$file) { echo "<p>Unable to open remote file for writing.\n";