Small fix for a parse error on line 64.

This commit is contained in:
skeeter 2001-08-21 16:51:21 +00:00
parent a9d1c35781
commit 9ebc41f0db

View File

@ -60,7 +60,7 @@
@reset($haystack); @reset($haystack);
while(list($key,$value) = each($haystack)) while(list($key,$value) = each($haystack))
{ {
if ($haystack[$key]==$needle && (!$strict || gettype($haystack[$key]==gettype($needle))) if ($haystack[$key]==$needle && (!$strict || gettype($haystack[$key])==gettype($needle)))
{ {
return $key; return $key;
} }