summaryrefslogtreecommitdiff
path: root/ext/pgsql/pgsql.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-03-05 13:35:52 +0000
committerAntony Dovgal <tony2001@php.net>2006-03-05 13:35:52 +0000
commit0b12f7307eed2ee7cceefe6750e2047607d73714 (patch)
tree73f37d6e2bb1b7f148c88fe6990e6fc69970e03d /ext/pgsql/pgsql.c
parent65211cddcc0fecbf7b0321cb250f5b7538428cf2 (diff)
downloadphp-git-0b12f7307eed2ee7cceefe6750e2047607d73714.tar.gz
MFH: fix #36606 (pg_query_params() changes arguments type to string)
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r--ext/pgsql/pgsql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c
index c608259193..2617d711c7 100644
--- a/ext/pgsql/pgsql.c
+++ b/ext/pgsql/pgsql.c
@@ -257,7 +257,7 @@ ZEND_GET_MODULE(pgsql)
static int le_link, le_plink, le_result, le_lofp, le_string;
-ZEND_DECLARE_MODULE_GLOBALS(pgsql);
+ZEND_DECLARE_MODULE_GLOBALS(pgsql)
/* {{{ _php_pgsql_trim_message */
static char * _php_pgsql_trim_message(const char *message, int *len)
@@ -1257,7 +1257,7 @@ PHP_FUNCTION(pg_query_params)
}
otype = (*tmp)->type;
- convert_to_string(*tmp);
+ convert_to_string_ex(tmp);
if (Z_TYPE_PP(tmp) != IS_STRING) {
php_error_docref(NULL TSRMLS_CC, E_WARNING,"Error converting parameter");
_php_pgsql_free_params(params, num_params);