diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/bootstrap.inc | 8 | ||||
-rw-r--r-- | includes/database.inc | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index caf23b672..4616ce72d 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -37,8 +37,8 @@ define('CACHE_AGGRESSIVE', 2); /** * * Severity levels, as defined in RFC 3164 http://www.faqs.org/rfcs/rfc3164.html - * @see watchdog - * @see watchdog_severity_levels + * @see watchdog() + * @see watchdog_severity_levels() */ define('WATCHDOG_EMERG', 0); // Emergency: system is unusable define('WATCHDOG_ALERT', 1); // Alert: action must be taken immediately @@ -562,7 +562,7 @@ function drupal_load($type, $name) { * fetch a fresh page on every request. This prevents authenticated * users seeing locally cached pages that show them as logged out. * - * @see page_set_cache + * @see page_set_cache() */ function drupal_page_header() { header("Expires: Sun, 19 Nov 1978 05:00:00 GMT"); @@ -712,7 +712,7 @@ function request_uri() { * @param $link * A link to associate with the message. * - * @see watchdog_severity_levels + * @see watchdog_severity_levels() */ function watchdog($type, $message, $variables = array(), $severity = WATCHDOG_NOTICE, $link = NULL) { global $user, $base_root; diff --git a/includes/database.inc b/includes/database.inc index 25aadf57a..c8212c16f 100644 --- a/includes/database.inc +++ b/includes/database.inc @@ -9,7 +9,7 @@ /** * A hash value to check when outputting database errors, md5('DB_ERROR'). * - * @see drupal_error_handler + * @see drupal_error_handler() */ define('DB_ERROR', 'a515ac9c2796ca0e23adbe92c68fc9fc'); |