diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-09-15 19:57:12 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-09-15 19:57:12 -0700 |
commit | c3f8b623766fe20768fb86c21e8455785b8e9928 (patch) | |
tree | 57efcc1b67c6e9d49d83aa2bbcda6297a00cbe6a /modules/server_add | |
parent | 7cc37451f4b7f7fe833fd5d355dab0f2a904d35e (diff) |
Adjust the text of the symlink error message.
Diffstat (limited to 'modules/server_add')
-rw-r--r-- | modules/server_add/controllers/admin_server_add.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/server_add/controllers/admin_server_add.php b/modules/server_add/controllers/admin_server_add.php index af9c5b22..7cd82d60 100644 --- a/modules/server_add/controllers/admin_server_add.php +++ b/modules/server_add/controllers/admin_server_add.php @@ -87,7 +87,7 @@ class Admin_Server_Add_Controller extends Admin_Controller { $add_path = $form->group("add_path"); $add_path->input("path")->label(t("Path"))->rules("required") ->error_messages("not_readable", t("This directory is not readable by the webserver")) - ->error_messages("is_symlink", t("Path can not be symbolic link")); + ->error_messages("is_symlink", t("Symbolic links are not allowed")); $add_path->submit("add")->value(t("Add Path")); return $form; |