diff options
author | jim-p <jimp@pfsense.org> | 2010-07-20 15:11:34 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-07-20 15:11:34 -0400 |
commit | 1a8bf19a68b0a87fe7a9716a7c978ab8d2cdb616 (patch) | |
tree | 2a61cd4f80caed4ef5af93a4be9ca46f7808d9a2 /usr | |
parent | 2b1b78e68c5ad448483371428b80841c024180c8 (diff) | |
download | pfsense-1a8bf19a68b0a87fe7a9716a7c978ab8d2cdb616.zip pfsense-1a8bf19a68b0a87fe7a9716a7c978ab8d2cdb616.tar.gz |
Fix typos
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/system_advanced_notifications.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/system_advanced_notifications.php b/usr/local/www/system_advanced_notifications.php index cdd8b2d..0ee67c7 100644 --- a/usr/local/www/system_advanced_notifications.php +++ b/usr/local/www/system_advanced_notifications.php @@ -111,13 +111,13 @@ if ($_POST) { if($config['notifications']['growl']['ipaddress'] && $config['notifications']['growl']['password'] = $_POST['password']) { register_via_growl(); - notify_via_growl(gettext("This is a test message form pfSense. It is safe to ignore this message.")); + notify_via_growl(gettext("This is a test message from pfSense. It is safe to ignore this message.")); } // Send test message via smtp if(file_exists("/var/db/notices_lastmsg.txt")) unlink("/var/db/notices_lastmsg.txt"); - $savemsg = notify_via_smtp(gettext("This is a test message form pfSense. It is safe to ignore this message.")); + $savemsg = notify_via_smtp(gettext("This is a test message from pfSense. It is safe to ignore this message.")); pfSenseHeader("system_advanced_notifications.php"); exit; |