summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-04-16 11:26:29 +0000
committerDries Buytaert <dries@buytaert.net>2008-04-16 11:26:29 +0000
commit46546ef478615dc1ac371c12cf392cabc1901cba (patch)
tree8347fce1461f44b39de08c2beff6b67268940a23 /modules/system/system.install
parent5e16a499cecb73aa868ef9b59a450f4dab9dbd72 (diff)
downloadbrdo-46546ef478615dc1ac371c12cf392cabc1901cba.tar.gz
brdo-46546ef478615dc1ac371c12cf392cabc1901cba.tar.bz2
- Patch #175841 by catch et al: remove comment controls for users. Yowza.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r--modules/system/system.install9
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index fcae4090c..a8aa9d927 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -750,7 +750,7 @@ function system_schema() {
'default' => '',
),
'to_arg_functions' => array(
- 'description' => t('A serialized array of function names (like user_uid_optional_to_arg) to be called to replace a part of the router path with another string.'),
+ 'description' => t('A serialized array of function names (like user_current_to_arg) to be called to replace a part of the router path with another string.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
@@ -1149,6 +1149,13 @@ function system_schema() {
'default' => 0,
'size' => 'tiny',
),
+ 'throttle' => array(
+ 'description' => t('Boolean indicating whether this item is disabled when the throttle.module disables throttleable items.'),
+ 'type' => 'int',
+ 'not null' => TRUE,
+ 'default' => 0,
+ 'size' => 'tiny',
+ ),
'bootstrap' => array(
'description' => t("Boolean indicating whether this module is loaded during Drupal's early bootstrapping phase (e.g. even before the page cache is consulted)."),
'type' => 'int',