diff options
author | Bernhard Fröhlich <bernhard@cacert.org> | 2011-10-08 13:21:14 +0200 |
---|---|---|
committer | Bernhard Fröhlich <bernhard@cacert.org> | 2011-10-08 13:21:14 +0200 |
commit | 2f550372c0ea49c5ed8cbbe413a6833937db508b (patch) | |
tree | 67bcd5b006513e705ea1c924e44adb6beeef5f7d | |
parent | 8dbed757d01be5e87c1bea960363cd1f4c768338 (diff) | |
download | cacert-devel-bug-920.tar.gz cacert-devel-bug-920.tar.xz cacert-devel-bug-920.zip |
Modifications proposed on https://bugs.cacert.org/view.php?id=920bug-920
-rw-r--r-- | www/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/index.php b/www/index.php index a139c4a..de84a73 100644 --- a/www/index.php +++ b/www/index.php @@ -432,10 +432,10 @@ $id = 1; $_SESSION['_config']['errmsg'] .= _("For your own security you must enter 5 lost password questions and answers.")."<br>\n"; } - if($_SESSION['signup']['fname'] == "" || $_SESSION['signup']['lname'] == "") + if($_SESSION['signup']['lname'] == "") { $id = 1; - $_SESSION['_config']['errmsg'] .= _("First and/or last names were blank.")."<br>\n"; + $_SESSION['_config']['errmsg'] .= _("Last name is blank. If your name consists only of a single part please use the last name field.")."<br>\n"; } if($_SESSION['signup']['year'] < 1900 || $_SESSION['signup']['month'] < 1 || $_SESSION['signup']['month'] > 12 || $_SESSION['signup']['day'] < 1 || $_SESSION['signup']['day'] > 31 || |