From 3a5fff993cdb69544324c81e2273e8f9449e0d8f Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Mon, 21 Feb 2000 15:00:20 +0000 Subject: [PATCH] Updated die as per bug #3546, would someone close that bug for me. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20109 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/misc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/misc.xml b/functions/misc.xml index 1eb6781ed9..27fd1a7a75 100644 --- a/functions/misc.xml +++ b/functions/misc.xml @@ -193,7 +193,7 @@ echo CONSTANT; // outputs "Hello world." <?php $filename = '/path/to/data-file'; $file = fopen ($filename, 'r') - or die "unable to open file ($filename)"; + or die("unable to open file ($filename)"); ?>