aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-07-31 15:34:45 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-07-31 15:34:45 +0200
commit08ca84a3e7fe7f8aa837792be9f3a55e62f77345 (patch)
tree7bec43f70c1babea15afb98433e4180d65788c3c
parentedb745e9516b236c370b9d1213598dfac69860c4 (diff)
downloadforums-08ca84a3e7fe7f8aa837792be9f3a55e62f77345.tar
forums-08ca84a3e7fe7f8aa837792be9f3a55e62f77345.tar.gz
forums-08ca84a3e7fe7f8aa837792be9f3a55e62f77345.tar.bz2
forums-08ca84a3e7fe7f8aa837792be9f3a55e62f77345.tar.xz
forums-08ca84a3e7fe7f8aa837792be9f3a55e62f77345.zip
[ticket/10299] Fix typo in comment about $max_store_length in truncate_string()
PHPBB3-10299
-rw-r--r--phpBB/includes/functions_content.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php
index faff9dd0de..b7650ecd6a 100644
--- a/phpBB/includes/functions_content.php
+++ b/phpBB/includes/functions_content.php
@@ -1107,7 +1107,7 @@ function extension_allowed($forum_id, $extension, &$extensions)
* @param int $max_length Maximum length of string (multibyte character count as 1 char / Html entity count as 1 char)
* @param int $max_store_length Maximum character length of string (multibyte character count as 1 char / Html entity count as entity chars).
* @param bool $allow_reply Allow Re: in front of string
-* NOTE: This parameter can cause undesired behavior (returning strings longer than $max_store_legnth) and is deprecated.
+* NOTE: This parameter can cause undesired behavior (returning strings longer than $max_store_length) and is deprecated.
* @param string $append String to be appended
*/
function truncate_string($string, $max_length = 60, $max_store_length = 255, $allow_reply = false, $append = '')