summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-08-30 17:57:25 +0000
committerAntony Dovgal <tony2001@php.net>2006-08-30 17:57:25 +0000
commit103d999dd19e7fe1d9a3e6a481947b97392a206e (patch)
treeb6346b164f237f0a136c0fb1482b56efd896cc7e
parent455fd471de51b90ca4931c29bf11de4c8cefbd24 (diff)
downloadphp-git-103d999dd19e7fe1d9a3e6a481947b97392a206e.tar.gz
fix typo
-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 b86336c4e8..396b9cb307 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -104,7 +104,7 @@ static PHP_INI_MH(OnUpdateSaveHandler)
} else {
err_type = E_ERROR;
}
- php_error_docref(NULL TSRMLS_CC, E_ERROR, "Cannot find save handler %s", new_value);
+ php_error_docref(NULL TSRMLS_CC, err_type, "Cannot find save handler %s", new_value);
return FAILURE;
}
PS(mod) = tmp;