Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.116' '-r1.117' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2006/05/11 09:37:27 1.116 +++ ChangeLog 2006/05/11 17:44:42 1.117 @@ -13,6 +13,10 @@ Changes between 1.4.2 and 1.5.0 (13-Mar-2006 to XX-May-2006) + o Fix PHP bindings: the wrong argument to uuid_create() + was forced to a reference + [Roman Neuhauser ] + o Add full support for Single Integer Value (SIV) UUID representation for both importing and exporting in C/C++/Perl/PHP APIs. [Ralf S. Engelschall] Index: ossp-pkg/uuid/THANKS RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/THANKS,v rcsdiff -q -kk '-r1.8' '-r1.9' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/THANKS,v' 2>/dev/null --- THANKS 2005/12/06 07:38:49 1.8 +++ THANKS 2006/05/11 17:44:42 1.9 @@ -15,6 +15,7 @@ o M. Daniel o Fuyuki o Thomas Lotterer + o Roman Neuhauser o Piotr Roszatycki o Michael Schloh o Guerry Semones Index: ossp-pkg/uuid/php/uuid.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.c,v rcsdiff -q -kk '-r1.6' '-r1.7' -u '/v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.c,v' 2>/dev/null --- uuid.c 2006/05/11 09:37:30 1.6 +++ uuid.c 2006/05/11 17:44:43 1.7 @@ -493,7 +493,7 @@ /* module function table */ static function_entry uuid_functions[] = { - PHP_FE(uuid_create, third_arg_force_ref) + PHP_FE(uuid_create, first_arg_force_ref) PHP_FE(uuid_destroy, NULL) PHP_FE(uuid_clone, NULL) PHP_FE(uuid_load, NULL)