Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | added some more tags from WinXP | Marcus Boerger | 2002-07-22 | 1 | -26/+118 | |
| | | | | | | | changed conersion for TAG_FMT_SBYTE & BYTE #second change fixes unnecessary conversion timeout #found by Johan Hultgren <johan@6thgear.se> | |||||
* | added EXIF Version 2.2 Tags | Marcus Boerger | 2002-07-22 | 1 | -40/+155 | |
| | ||||||
* | Fix typo.. | foobar | 2002-07-22 | 1 | -1/+1 | |
| | ||||||
* | Copy empty_string, fixed crash. | Yasuo Ohgaki | 2002-07-22 | 1 | -1/+1 | |
| | | | | | # I thought efree() won't free empty_string... | |||||
* | unify error messages & notices | Marcus Boerger | 2002-07-21 | 1 | -30/+30 | |
| | | | | | # this fixes exif again since it was broken by message unify | |||||
* | removed changes for mysql_select_db (optional parameter) | Georg Richter | 2002-07-21 | 1 | -23/+3 | |
| | | | | | | | | | | | | | | | | | | | | Why: 1) Its not the common way to add additionally functionality for functions or features which are already implemented in SQL. Therefore also a lot of mysql functions are marked as deprecated (and will be removed in near future) 2) The implemented workaround works only when mysql_select_db was called before (fetching the databasename from mysql->conn.db). It returns invalid or inconsistent results e.g.: - when "USE databasename" via mysql_query was used - when database was dropped or grant privileges had changed. In conjunction with persistent connection, there are also some inconsistencies, cause mysql_select_db returns the databasename from an old connection. To determine the database name just use the SQL command "SELECT DATABASE()" | |||||
* | fixed bug in mysql_real_escape_string: | Georg Richter | 2002-07-21 | 1 | -1/+1 | |
| | | | | | allocated 1 more byte for '\0' terminating character | |||||
* | Added pg_fetch_all() that fetch all rows in result. | Yasuo Ohgaki | 2002-07-21 | 2 | -0/+27 | |
| | | | | | | Useful and faster when there is enough memory. @Added pg_fetch_all() that fetch all rows in result. (Yasuo) | |||||
* | * fixed some errors in package.xml | Stig Bakken | 2002-07-21 | 1 | -36/+43 | |
| | ||||||
* | Fixed php_pgsql_convert's bool type handling. | Yasuo Ohgaki | 2002-07-20 | 1 | -9/+6 | |
| | ||||||
* | Hmm. My PostgreSQL returns "bool" for boolean now. | Yasuo Ohgaki | 2002-07-20 | 1 | -1/+1 | |
| | ||||||
* | Fixed convetion when null string is passed to php_pgsql_convert() | Yasuo Ohgaki | 2002-07-20 | 1 | -2/+1 | |
| | ||||||
* | Fixed crash. | Yasuo Ohgaki | 2002-07-20 | 1 | -1/+1 | |
| | ||||||
* | - added a skeleton for new layers | Harald Radi | 2002-07-19 | 6 | -10/+246 | |
| | | | | | - a bit cleanup | |||||
* | Unify error messages | Derick Rethans | 2002-07-19 | 1 | -72/+68 | |
| | ||||||
* | Unify error messages | Derick Rethans | 2002-07-19 | 1 | -113/+113 | |
| | ||||||
* | Unify error messages | Derick Rethans | 2002-07-19 | 1 | -7/+7 | |
| | ||||||
* | ext/rpc/com should work now, but there's still lots of work left. | Harald Radi | 2002-07-18 | 19 | -2344/+1635 | |
| | ||||||
* | removing tclink extension so it can be moved to pear/pecl | Dan Helfman | 2002-07-17 | 9 | -3783/+0 | |
| | ||||||
* | new credit card processing module for TrustCommerce | Dan Helfman | 2002-07-17 | 9 | -0/+3783 | |
| | | | | | http://trustcommerce.com/tclink.html | |||||
* | Fix DL entry point. | Andrei Zmievski | 2002-07-17 | 1 | -0/+6 | |
| | ||||||
* | Remove evil quotes | foobar | 2002-07-17 | 1 | -1/+1 | |
| | ||||||
* | even more items on the TODO list | Christian Stocker | 2002-07-17 | 1 | -2/+2 | |
| | ||||||
* | nodename is not always set, check if it really is. | Christian Stocker | 2002-07-17 | 1 | -1/+3 | |
| | ||||||
* | Fixed build. | Yasuo Ohgaki | 2002-07-17 | 1 | -2/+2 | |
| | ||||||
* | unbreak the shared build..again | foobar | 2002-07-17 | 1 | -6/+7 | |
| | ||||||
* | Added safe_mode & open_basedir checks for pg_lo_export() | Yasuo Ohgaki | 2002-07-17 | 1 | -0/+8 | |
| | | | | | @Added safe_mode & open_basedir checks for pg_lo_export() (Yasuo) | |||||
* | Added open_basedir check. | Yasuo Ohgaki | 2002-07-17 | 1 | -0/+4 | |
| | | | | | @ Added open_basedir check for pg_lo_import() (Yasuo) | |||||
* | Changed configure option order to make it clear option dependecy to users. | Yasuo Ohgaki | 2002-07-17 | 1 | -8/+9 | |
| | ||||||
* | Disable input encoding tranlation by default. | Yasuo Ohgaki | 2002-07-17 | 1 | -2/+2 | |
| | ||||||
* | fix protos | foobar | 2002-07-16 | 1 | -2/+2 | |
| | ||||||
* | @Fixed infinite recursion crash bug in ticks (Jason) | Jason Greene | 2002-07-16 | 1 | -20/+29 | |
| | | | | | | | | | | | | | | | | | | | | | | | Prevent reenterant calls to a user tick function by flagging the function entry during call. This prevents code like the following from infinitely recursing until a crash occurs: <?php register_tick_function(a); declare(ticks=1) { function a() { print "blah\n"; } ; ; ; ; } ?> | |||||
* | Added support for php.ini parameter "mysql.connect_timeout" | Georg Richter | 2002-07-16 | 2 | -0/+13 | |
| | ||||||
* | Fix bug #16985 (wrong count of GET/POST variables). | Edin Kadribasic | 2002-07-15 | 1 | -8/+11 | |
| | ||||||
* | mysql_create_db and mysql_drop_db disabled for NetWare | Anantha Kesari H Y | 2002-07-15 | 1 | -0/+6 | |
| | ||||||
* | Clean up code a little (Remove a use of magic number) | Yasuo Ohgaki | 2002-07-15 | 1 | -12/+12 | |
| | | | | | Change/add appropriate comments. | |||||
* | make this work with wsdl also | Shane Caraveo | 2002-07-14 | 1 | -3/+12 | |
| | ||||||
* | Fix Bug #18341. | Andrei Zmievski | 2002-07-14 | 1 | -2/+3 | |
| | | | | | | @- Fixed cases where preg_split() incorrectly terminated final element if @ it contained null byte. (Andrei) | |||||
* | a few fixes | Shane Caraveo | 2002-07-14 | 4 | -38/+49 | |
| | | | | | | | | fix __isfault fix decimal encoding fix a couple crashers in release builds by initializing variables set http to 1.0 since 1.1 features are not really supported | |||||
* | A start towards porting interop tests to php-soap | Shane Caraveo | 2002-07-14 | 21 | -0/+2647 | |
| | ||||||
* | Fix a couple of protos | Rasmus Lerdorf | 2002-07-14 | 1 | -6/+6 | |
| | ||||||
* | Move comment. | Yasuo Ohgaki | 2002-07-14 | 2 | -2/+2 | |
| | | | | | Remove a skip condition does not required. | |||||
* | These options are all enabled by default. (why?) | foobar | 2002-07-14 | 1 | -2/+2 | |
| | ||||||
* | These options are all enabled by default. (why?) | foobar | 2002-07-14 | 1 | -2/+2 | |
| | ||||||
* | Fix tests. Moriyoshi Koizumi <readjust@deneb.freemail.ne.jp> | Yasuo Ohgaki | 2002-07-14 | 3 | -3/+3 | |
| | ||||||
* | Fixed win32 build | Sander Roobol | 2002-07-13 | 1 | -6/+5 | |
| | ||||||
* | Kill compiler warning | foobar | 2002-07-13 | 1 | -1/+1 | |
| | ||||||
* | Fix SKIPs for these tests. | foobar | 2002-07-13 | 2 | -5/+2 | |
| | ||||||
* | nuke unused variable warning | foobar | 2002-07-13 | 1 | -3/+7 | |
| | ||||||
* | Fixed some unused variable warnings | foobar | 2002-07-13 | 1 | -2/+5 | |
| |