From 645524275ec2e509a8024c866f69a7979d5d7fc0 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Thu, 30 May 2013 07:14:11 +0100 Subject: [PATCH] Issue #2002706 by kerasai: Improve code maintainability by removing unused local variables - core/includes/authorize.inc. --- core/includes/authorize.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/includes/authorize.inc b/core/includes/authorize.inc index 45e55c96e772..96d77d66c74c 100644 --- a/core/includes/authorize.inc +++ b/core/includes/authorize.inc @@ -15,7 +15,6 @@ * @ingroup forms */ function authorize_filetransfer_form($form, &$form_state) { - global $base_url; $form = array(); // If possible, we want to post this form securely via HTTPS. @@ -226,7 +225,6 @@ function authorize_filetransfer_form_validate($form, &$form_state) { * @see authorize_filetransfer_validate() */ function authorize_filetransfer_form_submit($form, &$form_state) { - global $base_url; switch ($form_state['triggering_element']['#name']) { case 'process_updates': -- GitLab