diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-01 23:02:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-01 23:02:13 +0000 |
commit | 14c1c505e0b5915ff85f0698afc209f530fd83fb (patch) | |
tree | fb56f39b8ccf4ea846977b50c07845b5b80cc911 /includes/form.inc | |
parent | fedcd1acf0f1ee126febe211e8a1f47c27282956 (diff) | |
download | brdo-14c1c505e0b5915ff85f0698afc209f530fd83fb.tar.gz brdo-14c1c505e0b5915ff85f0698afc209f530fd83fb.tar.bz2 |
#607008 by dww, Gerhard Killesreiter, JacobSingh, and chx: Changed Fix bugs in https support and use https for authorize.php if available.
Diffstat (limited to 'includes/form.inc')
-rw-r--r-- | includes/form.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/form.inc b/includes/form.inc index 0de410ea5..062fc089e 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1017,7 +1017,7 @@ function form_builder($form_id, $element, &$form_state) { // Special handling if we're on the top level form element. if (isset($element['#type']) && $element['#type'] == 'form') { if (!empty($element['#https']) && variable_get('https', FALSE) && - !menu_path_is_external($element['#action'])) { + !url_is_external($element['#action'])) { global $base_root; // Not an external URL so ensure that it is secure. |