- Corrected the form description of the URL aliasing; don't add a trailing
slash. Reported by Stefan.4.3.x
parent
99400fa334
commit
6f4e902e3b
|
@ -1228,7 +1228,7 @@ function node_form($edit, $error = NULL) {
|
|||
$output .= form_textfield(t("Title"), "title", $edit->title, 60, 128, $error["title"]);
|
||||
|
||||
if (user_access("create custom URLs")) {
|
||||
$output .= form_textfield(t("Path alias"), "path", ($edit->path == "node/view/$edit->nid") ? "" : $edit->path, 60, 250, $error["path"] ? $error["path"] : t("Optionally specify an alternative URL by which this node can be accessed. For example, type 'about/' when writing an about page."));
|
||||
$output .= form_textfield(t("Path alias"), "path", ($edit->path == "node/view/$edit->nid") ? "" : $edit->path, 60, 250, $error["path"] ? $error["path"] : t("Optionally specify an alternative URL by which this node can be accessed. For example, type 'about' when writing an about page. Don't add a trailing slash or the URL won't work."));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -1228,7 +1228,7 @@ function node_form($edit, $error = NULL) {
|
|||
$output .= form_textfield(t("Title"), "title", $edit->title, 60, 128, $error["title"]);
|
||||
|
||||
if (user_access("create custom URLs")) {
|
||||
$output .= form_textfield(t("Path alias"), "path", ($edit->path == "node/view/$edit->nid") ? "" : $edit->path, 60, 250, $error["path"] ? $error["path"] : t("Optionally specify an alternative URL by which this node can be accessed. For example, type 'about/' when writing an about page."));
|
||||
$output .= form_textfield(t("Path alias"), "path", ($edit->path == "node/view/$edit->nid") ? "" : $edit->path, 60, 250, $error["path"] ? $error["path"] : t("Optionally specify an alternative URL by which this node can be accessed. For example, type 'about' when writing an about page. Don't add a trailing slash or the URL won't work."));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue