summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2015-03-30 18:47:52 -0400
committerDavid Rothstein <drothstein@gmail.com>2015-03-30 18:47:52 -0400
commitc377b88b8e9809ab117dd79901f01515ff085385 (patch)
tree63da1354d2f48723c33536ea22f579f717d1146d
parente765be0bad0015c69e45367ea518159932f3afcb (diff)
downloadbrdo-c377b88b8e9809ab117dd79901f01515ff085385.tar.gz
brdo-c377b88b8e9809ab117dd79901f01515ff085385.tar.bz2
Issue #2453321 by TravisCarden: Typo in @see reference: drupal_decode_exception() should be _drupal_decode_exception()
-rw-r--r--includes/bootstrap.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index cb7a5b7d1..0e8446280 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -1643,14 +1643,14 @@ function request_uri() {
* information about the passed-in exception is used.
* @param $variables
* Array of variables to replace in the message on display. Defaults to the
- * return value of drupal_decode_exception().
+ * return value of _drupal_decode_exception().
* @param $severity
* The severity of the message, as per RFC 3164.
* @param $link
* A link to associate with the message.
*
* @see watchdog()
- * @see drupal_decode_exception()
+ * @see _drupal_decode_exception()
*/
function watchdog_exception($type, Exception $exception, $message = NULL, $variables = array(), $severity = WATCHDOG_ERROR, $link = NULL) {