hholzgra                Mon Mar 17 07:48:39 2003 EDT

  Modified files:              
    /php4/ext/mysqli    mysqli_api.c 
  Log:
  more proto fixes
  
  
Index: php4/ext/mysqli/mysqli_api.c
diff -u php4/ext/mysqli/mysqli_api.c:1.20 php4/ext/mysqli/mysqli_api.c:1.21
--- php4/ext/mysqli/mysqli_api.c:1.20   Sat Mar 15 17:51:49 2003
+++ php4/ext/mysqli/mysqli_api.c        Mon Mar 17 07:48:38 2003
@@ -15,7 +15,7 @@
   | Author: Georg Richter <[EMAIL PROTECTED]>                                |
   +----------------------------------------------------------------------+
 
-  $Id: mysqli_api.c,v 1.20 2003/03/15 22:51:49 hholzgra Exp $ 
+  $Id: mysqli_api.c,v 1.21 2003/03/17 12:48:38 hholzgra Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -634,7 +634,7 @@
 }
 /* }}} */
 
-/* {{{ proto string mysql_error(resource link)
+/* {{{ proto string mysqli_error(resource link)
    Returns the text of the error message from previous MySQL operation */
 PHP_FUNCTION(mysqli_error) 
 {
@@ -766,7 +766,7 @@
 }
 /* }}} */
 
-/* {{{ proto int mysql_fetch_field (resource result)
+/* {{{ proto int mysqli_fetch_field (resource result)
    Get column information from a result and return as an object */
 PHP_FUNCTION(mysqli_fetch_field) 
 {
@@ -799,7 +799,7 @@
 }
 /* }}} */
 
-/* {{{ proto int mysql_fetch_fields (resource result)
+/* {{{ proto int mysqli_fetch_fields (resource result)
 */
 PHP_FUNCTION(mysqli_fetch_fields) 
 {
@@ -845,7 +845,7 @@
 }
 /* }}} */
 
-/* {{{ proto int mysql_fetch_field_direct (resource result, int offset)
+/* {{{ proto int mysqli_fetch_field_direct (resource result, int offset)
 */
 PHP_FUNCTION(mysqli_fetch_field_direct) 
 {
@@ -1098,7 +1098,7 @@
 }
 /* }}} */
 
-/* {{{ resource mysqli_init(void)
+/* {{{ proto resource mysqli_init(void)
    initialize mysqli */
 PHP_FUNCTION(mysqli_init)
 {
@@ -1775,7 +1775,7 @@
 }
 /* }}} */
 
-/* {{{ bool resource mysqli_stmt_store_result(stmt)
+/* {{{ proto resource mysqli_stmt_store_result(stmt)
 */
 PHP_FUNCTION(mysqli_stmt_store_result)
 {



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to