summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-02-19 00:33:05 +0000
committerDries Buytaert <dries@buytaert.net>2011-02-19 00:33:05 +0000
commita5c9ab07599fb7ffb76b26f494e997e53d2d45f2 (patch)
tree65ac379b3de94eb9ec4c7d3dbdb7df61fad8be6b /includes
parent2143e4d3729ea2afe918545d80fc2d75d3e89485 (diff)
downloadbrdo-a5c9ab07599fb7ffb76b26f494e997e53d2d45f2.tar.gz
brdo-a5c9ab07599fb7ffb76b26f494e997e53d2d45f2.tar.bz2
- Patch #1051184 by mr.baileys: fix doxygen formatting and punctuation in documentation for drupal_parse_info_file().
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 2764e91ec..e469810a3 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -6886,7 +6886,7 @@ function drupal_write_record($table, &$record, $primary_keys = array()) {
*/
/**
- * Parse Drupal module and theme info file format.
+ * Parses Drupal module and theme .info files.
*
* Info files are NOT for placing arbitrary theme and module-specific settings.
* Use variable_get() and variable_set() for that.
@@ -6897,7 +6897,7 @@ function drupal_write_record($table, &$record, $primary_keys = array()) {
* - dependencies: An array of shortnames of other modules this module requires.
* - package: The name of the package of modules this module belongs to.
*
- * @see forum.info
+ * See forum.info for an example of a module .info file.
*
* Information stored in a theme .info file:
* - name: The real name of the theme for display purposes.
@@ -6910,10 +6910,11 @@ function drupal_write_record($table, &$record, $primary_keys = array()) {
* - stylesheets: Theme stylesheets; e.g., stylesheets[all][] = my-style.css.
* - scripts: Theme scripts; e.g., scripts[] = my-script.js.
*
- * @see bartik.info
+ * See bartik.info for an example of a theme .info file.
*
* @param $filename
* The file we are parsing. Accepts file with relative or absolute path.
+ *
* @return
* The info array.
*