summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Kalowsky <kalowsky@php.net>2002-08-15 19:32:08 +0000
committerDan Kalowsky <kalowsky@php.net>2002-08-15 19:32:08 +0000
commit26986164b45925091dda2aceff7fffdc97fca5fc (patch)
tree64c833c84c557cd1e21247c5b163ed035323b462
parent443363dece5380458933d4cabefac915c7261a38 (diff)
downloadphp-git-26986164b45925091dda2aceff7fffdc97fca5fc.tar.gz
Correcting some english in the comment...
-rw-r--r--ext/session/session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c
index 02a5318519..b219bdbfab 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -244,7 +244,7 @@ void php_set_session_var(char *name, size_t namelen, zval *state_val, php_unseri
zval **old_symbol;
if (zend_hash_find(&EG(symbol_table),name,namelen+1,(void *)&old_symbol) == SUCCESS) {
/*
- There where old one, we need to replace it accurately.
+ There was an old one, we need to replace it accurately.
hash_update in zend_set_hash_symbol is not good, because
it will leave referenced variables (such as local instances
of a global variable) dangling.