From 3c12c21da0864690c310309c6ef35937a853875f Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Tue, 17 Feb 2004 13:47:49 +0000 Subject: [PATCH] don't use entity in CDATA's git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@151616 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/var/functions/isset.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/var/functions/isset.xml b/reference/var/functions/isset.xml index f0a7850d98..3145e23ee3 100644 --- a/reference/var/functions/isset.xml +++ b/reference/var/functions/isset.xml @@ -1,5 +1,5 @@ - + @@ -42,7 +42,7 @@ $var = ''; -// This will evaluate to &true; so the text will be printed. +// This will evaluate to TRUE so the text will be printed. if (isset($var)) { echo "This var is set set so I will print."; }