summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc8
1 files changed, 7 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 83979afd9..ea6f6e4f9 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -60,8 +60,14 @@ define('DRUPAL_BOOTSTRAP_PATH', 6);
*/
define('DRUPAL_BOOTSTRAP_FULL', 7);
-// These values should match the 'role' table
+/**
+ * Role ID for anonymous users; should match what's in the "role" table.
+ */
define('DRUPAL_ANONYMOUS_RID', 1);
+
+/**
+ * Role ID for authenticated users; should match what's in the "role" table.
+ */
define('DRUPAL_AUTHENTICATED_RID', 2);
/**