diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-04-14 17:48:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-04-14 17:48:46 +0000 |
commit | 56d2664a904119f73e7df4fb355e4c525e040b70 (patch) | |
tree | 0ac2302d485b4b0769d269825880975428bd3b0c /modules/path/path.admin.inc | |
parent | 46cda4c6ae388cd2e918ae2aec887e617e5bd44e (diff) | |
download | brdo-56d2664a904119f73e7df4fb355e4c525e040b70.tar.gz brdo-56d2664a904119f73e7df4fb355e4c525e040b70.tar.bz2 |
- Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long discussion we've decided to make the concatenation operator consistent with the other operators.
Diffstat (limited to 'modules/path/path.admin.inc')
-rw-r--r-- | modules/path/path.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/path/path.admin.inc b/modules/path/path.admin.inc index e5966b3da..eab81760b 100644 --- a/modules/path/path.admin.inc +++ b/modules/path/path.admin.inc @@ -220,7 +220,7 @@ function path_admin_filter_form(&$form_state, $keys = '') { * Process filter form submission when the Filter button is pressed. */ function path_admin_filter_form_submit_filter($form, &$form_state) { - $form_state['redirect'] = 'admin/build/path/list/'. trim($form_state['values']['filter']); + $form_state['redirect'] = 'admin/build/path/list/' . trim($form_state['values']['filter']); } /** |