summaryrefslogtreecommitdiff
path: root/ext/odbc
diff options
context:
space:
mode:
authorDan Kalowsky <kalowsky@php.net>2002-03-05 06:15:01 +0000
committerDan Kalowsky <kalowsky@php.net>2002-03-05 06:15:01 +0000
commit1e0ee7b1b561af5007edd288eeb90f1796938ba0 (patch)
treee98adeb825d26f90714ec0179ecd88ef1dcf979b /ext/odbc
parent7d7b1ae9b501cd36ba7e8d4bc67fc052f4c3e5b9 (diff)
downloadphp-git-1e0ee7b1b561af5007edd288eeb90f1796938ba0.tar.gz
Added a comment for future reference
Diffstat (limited to 'ext/odbc')
-rw-r--r--ext/odbc/birdstep.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/odbc/birdstep.c b/ext/odbc/birdstep.c
index 35641adb46..b08ce1f171 100644
--- a/ext/odbc/birdstep.c
+++ b/ext/odbc/birdstep.c
@@ -61,6 +61,12 @@ function_entry birdstep_functions[] = {
PHP_FE(birdstep_rollback, NULL)
PHP_FE(birdstep_fieldnum, NULL)
PHP_FE(birdstep_fieldname, NULL)
+/*
+ * Temporary Function aliases until the next major upgrade to PHP.
+ * These should allow users to continue to use their current scripts,
+ * but should in reality warn the user that this functionality is
+ * deprecated.
+ */
PHP_FALIAS(velocis_connect, birdstep_connect, NULL)
PHP_FALIAS(velocis_close, birdstep_close, NULL)
PHP_FALIAS(velocis_exec, birdstep_exec, NULL)
@@ -73,6 +79,7 @@ function_entry birdstep_functions[] = {
PHP_FALIAS(velocis_rollback, birdstep_rollback, NULL)
PHP_FALIAS(velocis_fieldnum, birdstep_fieldnum, NULL)
PHP_FALIAS(velocis_fieldname, birdstep_fieldname, NULL)
+/* End temporary aliases */
{NULL, NULL, NULL}
};