diff --git a/html/includes/print-interface.inc.php b/html/includes/print-interface.inc.php
index fb55f1651e..dddc91d9ab 100644
--- a/html/includes/print-interface.inc.php
+++ b/html/includes/print-interface.inc.php
@@ -112,7 +112,7 @@ if ($port_adsl['adslLineCoding'])
echo("
");
if ($ifHardType && $ifHardType != "") { echo("" . $ifHardType . ""); } else { echo("-"); }
echo("
");
- if ($interface['ifPhysAddress'] && $interface['ifPhysAddress'] != "") { echo("" . $interface['ifPhysAddress'] . ""); } else { echo("-"); }
+ if ($interface['ifPhysAddress'] && $interface['ifPhysAddress'] != "") { echo("" . formatMac($interface['ifPhysAddress']) . ""); } else { echo("-"); }
echo(" ");
if ($interface['ifMtu'] && $interface['ifMtu'] != "") { echo("MTU " . $interface['ifMtu'] . ""); } else { echo("-"); }
}
@@ -269,4 +269,4 @@ if ($graph_type && is_file($graph_file))
echo(" | ");
}
-?>
\ No newline at end of file
+?>