diff options
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index e3d7932f1..ba70970e5 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -183,7 +183,9 @@ function path_set_alias($path = NULL, $alias = NULL, $pid = NULL) { * Return a form for editing or creating an individual URL alias. */ function path_form($edit = '') { - $form['#base'] = 'path_form'; + $form['#submit']['path_form_submit'] = array(); + $form['#validate']['path_form_validate'] = array(); + $form['#theme'] = 'path_form'; $form['src'] = array( '#type' => 'textfield', |