handy ip test
diff --git a/downloadsites/webtools/artifacts/ipinfo.php b/downloadsites/webtools/artifacts/ipinfo.php
index 814423b..0a71de0 100644
--- a/downloadsites/webtools/artifacts/ipinfo.php
+++ b/downloadsites/webtools/artifacts/ipinfo.php
@@ -1,4 +1,7 @@
 <?php
+
+# Originally copied, and then modified, from ip_test.php, by Denis Roy.
+
 echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?> \n" ;
 
 ini_set("display_errors", "true");
@@ -25,10 +28,10 @@
 echo "Your hostname's IP (forward lookup of your reverse lookup): " . $ip . "<br />";
 
 if( $ipsMatch ) {
-    echo "Your DNS seems okay!";
+    echo "IPs match, your DNS is okay!";
 }
 else {
-    echo "Your DNS is broken. This may cause your connection to CVS to be slow!";
+    echo "IPs do not match. Your DNS (or configuration) is probably broken. This may cause your connection to CVS to be slow!";
 }
 
 ?>