diff --git a/scripts/pi-hole/php/savesettings.php b/scripts/pi-hole/php/savesettings.php
index d37be27c..f85d5a4e 100644
--- a/scripts/pi-hole/php/savesettings.php
+++ b/scripts/pi-hole/php/savesettings.php
@@ -230,7 +230,7 @@ function addStaticDHCPLease($mac, $ip, $hostname) {
foreach($dhcp_static_leases as $lease) {
if($lease["hwaddr"] === $mac)
{
- throw new Exception("Static release for MAC address (".htmlspecialchars($mac).") already defined!
", 4);
+ throw new Exception("Static lease for MAC address (".htmlspecialchars($mac).") already defined!
", 4);
}
if($ip !== "noip" && $lease["IP"] === $ip)
{