Index: trunk/xpressme_integration_kit/admin/index.php
===================================================================
--- trunk/xpressme_integration_kit/admin/index.php	(revision 353)
+++ trunk/xpressme_integration_kit/admin/index.php	(revision 395)
@@ -169,5 +169,7 @@
 		echo "SERVER:  ". $_SERVER['SERVER_SOFTWARE']. "<br />\n";
 		echo "PHP Version:   " . phpversion() . "<br />\n";
-		echo 'libxml Version:  ' . LIBXML_DOTTED_VERSION . "<br />\n";
+		echo 'libxml Version:  ';
+		if (defined('LIBXML_DOTTED_VERSION')) echo LIBXML_DOTTED_VERSION ; else echo "Can't detect.";
+		echo "<br />\n";;
 		echo "MySQL Version:   " . mysql_get_server_info() . "</text><br />";
 		echo "XOOPS Version:   " . XOOPS_VERSION . "</text><br />";
@@ -233,5 +235,7 @@
 		echo "<label>" . "<strong>SERVER:</strong>" . ":</label><text>" . $_SERVER['SERVER_SOFTWARE'] . "</text><br />";
 		echo "<label>" . "<strong>PHP Version:</strong>" . ":</label><text>" . phpversion() . "</text><br />";
-		echo "<label>" . "<strong>libxml Version:</strong>" . ":</label><text>" . LIBXML_DOTTED_VERSION . "</text><br />";
+		echo "<label>" . "<strong>libxml Version:</strong>" . ":</label><text>";
+		if (defined('LIBXML_DOTTED_VERSION')) echo LIBXML_DOTTED_VERSION ; else echo "Can't detect.";
+		echo "</text><br />";
 		echo "<label>" . "<strong>MySQL Version:</strong>" . ":</label><text>" . mysql_get_server_info() . "</text><br />";
 		echo "<label>" . "<strong>XOOPS Version:</strong>" . ":</label><text>" . XOOPS_VERSION . "</text><br />";
