summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-03 06:58:52 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-03 06:58:52 +0000
commit9574da507ffca24b9fc6e706928d494a864f46ae (patch)
tree818cc9da244327e2f8c49207cb97b078de1417d4 /install.php
parentc5fea4f88a62b02c7d3c78087815b77fc6efcdb3 (diff)
downloadbrdo-9574da507ffca24b9fc6e706928d494a864f46ae.tar.gz
brdo-9574da507ffca24b9fc6e706928d494a864f46ae.tar.bz2
- Patch #656470 by mfer, David_Rothstein: remove fake form alter hook.
Diffstat (limited to 'install.php')
-rw-r--r--install.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/install.php b/install.php
index 5948f5156..e5b6500fb 100644
--- a/install.php
+++ b/install.php
@@ -1674,13 +1674,6 @@ function _install_configure_form($form, &$form_state, &$install_state) {
'#weight' => 15,
);
- // Allow the profile to alter this form. $form_state isn't available
- // here, but to conform to the hook_form_alter() signature, we pass
- // an empty array.
- $hook_form_alter = $install_state['parameters']['profile'] . '_form_alter';
- if (function_exists($hook_form_alter)) {
- $hook_form_alter($form, array(), 'install_configure');
- }
return $form;
}