helly           Sat Oct 25 17:28:19 2003 EDT

  Modified files:              
    /php-src/ext/simplexml      simplexml.c 
  Log:
  Show if Schemas are supported
  
Index: php-src/ext/simplexml/simplexml.c
diff -u php-src/ext/simplexml/simplexml.c:1.67 php-src/ext/simplexml/simplexml.c:1.68
--- php-src/ext/simplexml/simplexml.c:1.67      Sat Oct 25 17:08:33 2003
+++ php-src/ext/simplexml/simplexml.c   Sat Oct 25 17:28:01 2003
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: simplexml.c,v 1.67 2003/10/25 21:08:33 helly Exp $ */
+/* $Id: simplexml.c,v 1.68 2003/10/25 21:28:01 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -1086,7 +1086,13 @@
 {
        php_info_print_table_start();
        php_info_print_table_header(2, "Simplexml support", "enabled");
-       php_info_print_table_row(2, "Revision", "$Revision: 1.67 $");
+       php_info_print_table_row(2, "Revision", "$Revision: 1.68 $");
+       php_info_print_table_row(2, "Schema support", 
+#ifdef LIBXML_SCHEMAS_ENABLED
+               "enabled");
+#else
+               "not available");
+#endif
        php_info_print_table_end();
 }
 /* }}} */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to