diff options
| author | Tal Peer <tal@php.net> | 2003-04-20 13:15:45 +0000 | 
|---|---|---|
| committer | Tal Peer <tal@php.net> | 2003-04-20 13:15:45 +0000 | 
| commit | a676f6c29ddeb7690178165161b9b2616cbb839f (patch) | |
| tree | 9c6d6394945e2d9ee5eaf59e72598ee8d450ed8f | |
| parent | 7360c5dfdd7ca8339d9b6fdaa76df544a12f6c3c (diff) | |
| download | php-git-a676f6c29ddeb7690178165161b9b2616cbb839f.tar.gz | |
Update
| -rw-r--r-- | ext/sqlite/CREDITS | 2 | ||||
| -rw-r--r-- | ext/sqlite/TODO | 3 | ||||
| -rw-r--r-- | ext/sqlite/package.xml | 6 | ||||
| -rw-r--r-- | ext/sqlite/php_sqlite.h | 1 | ||||
| -rw-r--r-- | ext/sqlite/sqlite.c | 3 | 
5 files changed, 10 insertions, 5 deletions
diff --git a/ext/sqlite/CREDITS b/ext/sqlite/CREDITS index 526b5a7d33..bd253dd63b 100644 --- a/ext/sqlite/CREDITS +++ b/ext/sqlite/CREDITS @@ -1,2 +1,2 @@  sqlite -Wez Furlong +Wez Furlong, Tal Peer diff --git a/ext/sqlite/TODO b/ext/sqlite/TODO index 24940a9b3b..3f190670b7 100644 --- a/ext/sqlite/TODO +++ b/ext/sqlite/TODO @@ -1,6 +1,3 @@ -- Implement an aggregating php function handler for use in SQL statements and -  triggers etc. -  - Add user-space callback for the authorizer function (this is potentially    very slow, so it needs to be implemented carefully). diff --git a/ext/sqlite/package.xml b/ext/sqlite/package.xml index 473246adf0..e659eedd98 100644 --- a/ext/sqlite/package.xml +++ b/ext/sqlite/package.xml @@ -10,6 +10,12 @@        <email>wez@php.net</email>        <role>lead</role>      </maintainer> +    <maintainer> +      <user>tal</user> +      <name>Tal Peer</name> +      <email>tal@php.net</name> +      <role>developer</role> +    </maintainer>    </maintainers>    <description>  	SQLite is a C library that implements an embeddable SQL database engine. diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h index 86fb3084d5..c05bba4c60 100644 --- a/ext/sqlite/php_sqlite.h +++ b/ext/sqlite/php_sqlite.h @@ -13,6 +13,7 @@    | license@php.net so we can mail you a copy immediately.               |    +----------------------------------------------------------------------+    | Author: Wez Furlong <wez@thebrainroom.com>                           | +  |         Tal Peer <tal@php.net                                        |    +----------------------------------------------------------------------+    $Id$  diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index d00ca3a47e..2c13a692b5 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -12,7 +12,8 @@    | obtain it through the world-wide-web, please send a note to          |    | license@php.net so we can mail you a copy immediately.               |    +----------------------------------------------------------------------+ -  | Author: Wez Furlong <wez@thebrainroom.com>                           | +  | Authors: Wez Furlong <wez@thebrainroom.com>                          | +  |          Tal Peer <tal@php.net>                                      |    +----------------------------------------------------------------------+    $Id$   | 
