From: Antony Dovgal Date: Sun, 5 Mar 2006 13:33:28 +0000 (+0000) Subject: fix #36606 (pg_query_params() changes arguments type to string) X-Git-Tag: RELEASE_1_3~545 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94566f39f1c2f35adeda4d9fb3b573b86c19266a;p=php fix #36606 (pg_query_params() changes arguments type to string) --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index d1233cff8b..2f179b426e 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);