]> granicus.if.org Git - php/commitdiff
*** empty log message ***
authorZeev Suraski <zeev@php.net>
Fri, 16 Jul 1999 17:26:16 +0000 (17:26 +0000)
committerZeev Suraski <zeev@php.net>
Fri, 16 Jul 1999 17:26:16 +0000 (17:26 +0000)
ext/pgsql/pgsql.c

index 61b1634696c81c2218b9c80fcee62413897aab13..06ef5ab55cede424c8633a480af38c5ff5ae73e0 100644 (file)
@@ -857,13 +857,6 @@ PHP_FUNCTION(pgsql_result)
 }
 /* }}} */
 
-/* {{{ proto array pg_fetchrow(int result, int row)
-   Get a row as an enumerated array */ 
-PHP_FUNCTION(pgsql_fetch_row)
-{
-       php3_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, PGSQL_NUM);
-}
-/* }}} */
 
 static void php3_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type)
 {
@@ -948,6 +941,14 @@ static void php3_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type)
 }
 
 
+/* {{{ proto array pg_fetchrow(int result, int row)
+   Get a row as an enumerated array */ 
+PHP_FUNCTION(pgsql_fetch_row)
+{
+       php3_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, PGSQL_NUM);
+}
+/* }}} */
+
 /* ??  This is a rather odd function - why not just point pg_fetcharray() directly at fetch_hash ? -RL */
 /* {{{ proto array pg_fetch_array(int result, int row)
    Fetch a row as an array */