From b6c078fc0023761b8d0478d90b492f63985f59f8 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 19 Sep 2013 04:12:25 +0000 Subject: [PATCH] Add missing `$path` parameter phpdoc for `load_theme_textdomain()`. see #16750. git-svn-id: https://develop.svn.wordpress.org/trunk@25492 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/l10n.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wp-includes/l10n.php b/src/wp-includes/l10n.php index e9b1c59dba..42ac7ae627 100644 --- a/src/wp-includes/l10n.php +++ b/src/wp-includes/l10n.php @@ -514,6 +514,8 @@ function load_muplugin_textdomain( $domain, $mu_plugin_rel_path = '' ) { * @since 1.5.0 * * @param string $domain Unique identifier for retrieving translated strings. + * @param string $path Optional. Path to the directory containing the .mo file. + * Default false. * @return bool True when textdomain is successfully loaded, false otherwise. */ function load_theme_textdomain( $domain, $path = false ) {