]> granicus.if.org Git - php/commitdiff
- Clearified which version of libmcrypt is enabled
authorDerick Rethans <derick@php.net>
Tue, 15 Aug 2000 14:58:21 +0000 (14:58 +0000)
committerDerick Rethans <derick@php.net>
Tue, 15 Aug 2000 14:58:21 +0000 (14:58 +0000)
# Request by Olivier Cahagne

ext/mcrypt/mcrypt.c

index 974ab9cea47b45ff805c791ad05baa38bee2bfcf..8147d8b4d76a1f59084c92f6c5d20ea3a6c40d93 100644 (file)
@@ -373,8 +373,11 @@ PHP_MINFO_FUNCTION(mcrypt)
 
        php_info_print_table_start();
        php_info_print_table_header(2, "mcrypt support", "enabled");
+#if HAVE_LIBMCRYPT22
+       php_info_print_table_row(2, "version", "2.2.x");
+#endif
 #if HAVE_LIBMCRYPT24
-       php_info_print_table_row(2, "API Version", ">= 20000320");
+       php_info_print_table_row(2, "version", "2.4.x");
        php_info_print_table_row(2, "Supported ciphers", tmp);
        php_info_print_table_row(2, "Supported modes", tmp2);
        efree (tmp2);