summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-09-20 17:56:24 +0000
committerDries Buytaert <dries@buytaert.net>2009-09-20 17:56:24 +0000
commit105bd63a992887f9c592a1b36248da443958e62d (patch)
tree4bf237049c34fa7f83de651e43746c76108aaed1 /modules/system/system.install
parent5c7375669d4d0c781067e539836d96fda8fa81d1 (diff)
downloadbrdo-105bd63a992887f9c592a1b36248da443958e62d.tar.gz
brdo-105bd63a992887f9c592a1b36248da443958e62d.tar.bz2
- Patch #445062 by sun: removed system_requirements check for tokenizer now that the registry is gone.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install11
1 files changed, 0 insertions, 11 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 077075608..8661ac40e 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -64,17 +64,6 @@ function system_requirements($phase) {
$requirements['php']['severity'] = REQUIREMENT_ERROR;
}
- // Make sure the tokenizer extension is enabled, which is required by the code registry.
- $requirements['php_tokenizer'] = array(
- 'title' => $t('PHP tokenizer'),
- 'value' => $t('Enabled'),
- );
- if (!function_exists('token_get_all')) {
- $requirements['php_tokenizer']['value'] = $t('Not enabled');
- $requirements['php_tokenizer']['description'] = $t('Drupal requires the <a href="@url">tokenizer extension</a> to be enabled.', array('@url' => 'http://php.net/tokenizer'));
- $requirements['php_tokenizer']['severity'] = REQUIREMENT_ERROR;
- }
-
// Test PHP register_globals setting.
$requirements['php_register_globals'] = array(
'title' => $t('PHP register globals'),