diff --git a/classes/MobileDeviceDetect.php b/classes/MobileDeviceDetect.php
index a7867bc..33388e4 100644
--- a/classes/MobileDeviceDetect.php
+++ b/classes/MobileDeviceDetect.php
@@ -584,12 +584,13 @@ class MobileDeviceDetect
function getInfo()
{
- return "Browser: {$this->getBrowser()}" .
+ return "Browsing with: {$this->getBrowser()}" .
" - {$this->getVersion()}" .
//"Browser User Agent String: {$this->getUserAgent()}
\n" .
- " :: Platform: {$this->getPlatform()}" .
- "- {$this->mobile_device_detect()}
";
+ " :: from OS: {$this->getPlatform()}" .
+ "- {$this->mobile_device_detect()}" . ", on a server with PHP ". PHP_VERSION ." & OS ". PHP_OS;
}
}
//end of class
+?>