summaryrefslogtreecommitdiff
path: root/modules/system/system.install
diff options
context:
space:
mode:
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',