1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- pecl/uuid/trunk/uuid.c 2012/11/06 09:53:26 328260
+++ pecl/uuid/trunk/uuid.c 2012/11/06 10:03:36 328261
@@ -134,10 +134,10 @@
/* {{{ PHP_MINFO_FUNCTION */
PHP_MINFO_FUNCTION(uuid)
{
- php_printf("UUID extension\n");
php_info_print_table_start();
- php_info_print_table_row(2, "Version",PHP_UUID_VERSION " (stable)");
- php_info_print_table_row(2, "Released", "2008-04-01");
+ php_info_print_table_header(2, "UUID extension", "enabled");
+ php_info_print_table_row(2, "Version", PHP_UUID_VERSION " (stable)");
+ php_info_print_table_row(2, "Released", PHP_UUID_RELEASED);
php_info_print_table_row(2, "CVS Revision", "$Id: uuid.c 297236 2010-03-31 20:39:48Z johannes $");
php_info_print_table_row(2, "Authors", "Hartmut Holzgraefe 'hartmut@php.net' (lead)\n");
php_info_print_table_end();
--- pecl/uuid/trunk/php_uuid.h 2012/11/06 09:53:26 328260
+++ pecl/uuid/trunk/php_uuid.h 2012/11/06 10:03:36 328261
@@ -39,6 +39,7 @@
#ifdef HAVE_UUID
#define PHP_UUID_VERSION "1.0.3"
+#define PHP_UUID_RELEASED "2012-06-18"
#include <php_ini.h>
|