summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-29 04:16:15 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-29 04:16:15 +0000
commit770e0d54f9c5b33c4d01b5cefe652b61b132dc0c (patch)
tree1f4e71de273adab60b46791aad3beb673c3b05a1 /includes
parent5c5b3a149a928b4c6761a0b9161d383a83677ec7 (diff)
downloadbrdo-770e0d54f9c5b33c4d01b5cefe652b61b132dc0c.tar.gz
brdo-770e0d54f9c5b33c4d01b5cefe652b61b132dc0c.tar.bz2
#364470 by stBorchert and JohnAlbin: Made theming of 'Submitted by author, on date' easier.
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 23c8ab9c0..96ba98f5b 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -610,7 +610,7 @@ function list_themes($refresh = FALSE) {
* - MODULE_preprocess_HOOK(&$variables)
* This is for modules that want to alter or provide extra variables for
* theming hooks not registered to itself. For example, if a module named
- * "foo" wanted to alter the $submitted variable for the hook "node" a
+ * "foo" wanted to alter the $classes_array variable for the hook "node" a
* preprocess function of foo_preprocess_node() can be created to intercept
* and alter the variable.
*
@@ -624,8 +624,8 @@ function list_themes($refresh = FALSE) {
*
* - THEME_preprocess(&$variables)
* This is for themes that want to alter or provide extra variables. For
- * example, if a theme named "foo" wanted to alter the $submitted variable for
- * the hook "node" a preprocess function of foo_preprocess_node() can be
+ * example, if a theme named "foo" wanted to alter the $classes_array variable
+ * for the hook "node" a preprocess function of foo_preprocess_node() can be
* created to intercept and alter the variable.
*
* - THEME_preprocess_HOOK(&$variables)
@@ -646,7 +646,7 @@ function list_themes($refresh = FALSE) {
* - MODULE_process_HOOK(&$variables)
* This is for modules that want to alter or provide extra variables for
* theming hooks not registered to itself. For example, if a module named
- * "foo" wanted to alter the $submitted variable for the hook "node" a
+ * "foo" wanted to alter the $classes_array variable for the hook "node" a
* process function of foo_process_node() can be created to intercept
* and alter the variable.
*