summaryrefslogtreecommitdiff
path: root/modules/watchdog/watchdog.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-11-13 02:32:18 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-11-13 02:32:18 +0000
commit21bed11e668d0a526d35d0baab4606af64141b00 (patch)
tree059370bbd41239a15997c9313a95119dd296c3f9 /modules/watchdog/watchdog.module
parentdaca20e03467373e380e241107e0f7842a576f68 (diff)
downloadbrdo-21bed11e668d0a526d35d0baab4606af64141b00.tar.gz
brdo-21bed11e668d0a526d35d0baab4606af64141b00.tar.bz2
- Add missing url()s around form actions (these would break without clean URLs)
Diffstat (limited to 'modules/watchdog/watchdog.module')
-rw-r--r--modules/watchdog/watchdog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index b22839ba8..e350d8485 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -91,7 +91,7 @@ function watchdog_overview() {
'#options' => $names,
'#default_value' => $_SESSION['watchdog_overview_filter']
);
- $form['#action'] = 'admin/logs';
+ $form['#action'] = url('admin/logs');
$form['submit'] = array('#type' => 'submit', '#value' =>t('Filter'));
$output = drupal_get_form('watchdog_form_overview', $form);