diff options
author | Veres Lajos <vlajos@gmail.com> | 2013-04-22 13:41:27 +0100 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-06-10 13:36:03 -0700 |
commit | ed2e84e2394b97f710710c6db0366d739422b0fe (patch) | |
tree | feb0eba79f31425ddb9b50395aa7a508a1bd2665 /ext/pdo/pdo_sql_parser.c | |
parent | 7a1e670d762accae231764c83a1ce0d379ef5cad (diff) | |
download | php-git-ed2e84e2394b97f710710c6db0366d739422b0fe.tar.gz |
typo fixes (accommodate, parameter)
Diffstat (limited to 'ext/pdo/pdo_sql_parser.c')
-rw-r--r-- | ext/pdo/pdo_sql_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo/pdo_sql_parser.c b/ext/pdo/pdo_sql_parser.c index 4219762a4b..4c523506c4 100644 --- a/ext/pdo/pdo_sql_parser.c +++ b/ext/pdo/pdo_sql_parser.c @@ -761,9 +761,9 @@ int old_pdo_parse_params(pdo_stmt_t *stmt, char *inquery, int inquery_len, char while (SUCCESS == zend_hash_get_current_data(params, (void**)¶m)) { if(param->parameter) { convert_to_string(param->parameter); - /* accomodate a string that needs to be fully quoted + /* accommodate a string that needs to be fully quoted bind placeholders are at least 2 characters, so - the accomodate their own "'s + the accommodate their own "'s */ newbuffer_len += padding * Z_STRLEN_P(param->parameter); } |