summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-01 10:11:36 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-01 10:11:36 +0000
commit3f4d18fafc2718a056be07b9bf3c51ecfa610f33 (patch)
tree03cda2b76b9092655769e55fb9adbe008e58b2cc /modules/path
parentf3d0fed0e66f9cb2a761b2059803decf653049f0 (diff)
downloadbrdo-3f4d18fafc2718a056be07b9bf3c51ecfa610f33.tar.gz
brdo-3f4d18fafc2718a056be07b9bf3c51ecfa610f33.tar.bz2
- Patch #35621 by asimmonds: URL path settings on node/add/* did not work.
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module
index 078900a25..d240485d6 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -193,7 +193,7 @@ function path_nodeapi(&$node, $op, $arg) {
case 'form':
$form['path'] = array('#type' => 'fieldset', '#title' => t('URL path settings'), '#collapsible' => TRUE, '#collapsed' => TRUE);
- $form['path']['alias'] = array('#type' => 'textfield', '#default_value' => $node->path, '#size' => 60, '#maxlength' => 250, '#collapsible' => TRUE, '#collapsed' => TRUE, '#description' => t('Optionally specify an alternative URL by which this node can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'));
+ $form['path']['path'] = array('#type' => 'textfield', '#default_value' => $node->path, '#size' => 60, '#maxlength' => 250, '#collapsible' => TRUE, '#collapsed' => TRUE, '#description' => t('Optionally specify an alternative URL by which this node can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'));
if ($node->path) {
$form['path']['pid'] = array('#type' => 'hidden', '#value' => db_result(db_query("SELECT pid FROM {url_alias} WHERE dst = '%s'", $node->path)));
}