diff --git a/_includes/includes/ui/keyboard-details.php b/_includes/includes/ui/keyboard-details.php
index 5d0e35b..3e24060 100644
--- a/_includes/includes/ui/keyboard-details.php
+++ b/_includes/includes/ui/keyboard-details.php
@@ -518,11 +518,13 @@ protected static function WriteKeyboardDetails() {
echo " Expand $count more >>";
echo "<< Collapse ";
}
- echo
- "" .
- (!strcasecmp($bcp47, self::$bcp47) ? "".htmlspecialchars($detail->languageName)."" : htmlspecialchars($detail->languageName)).
- " ";
+ if (array_key_exists('languageName', $detail)) {
+ echo
+ "" .
+ (!strcasecmp($bcp47, self::$bcp47) ? "".htmlspecialchars($detail->languageName)."" : htmlspecialchars($detail->languageName)).
+ " ";
+ }
$n++;
}
if($n >= 3) {