This commit is contained in:
Roman Kelesidis 2024-01-09 14:15:26 +07:00
parent efabef293e
commit 58d6abb537
3 changed files with 7 additions and 7 deletions

View File

@ -189,7 +189,7 @@ function generate_smilies($mode)
/**
* Strips away [quote] tags and their contents from the specified string
*
* @param string Text to be stripped of quote tags
* @param string $text Text to be stripped of quote tags
*
* @return string
*/
@ -292,9 +292,9 @@ function strip_quotes ($text)
/**
* Strips away bbcode from a given string, leaving plain text
*
* @param string Text to be stripped of bbcode tags
* @param boolean If true, strip away quote tags AND their contents
* @param boolean If true, use the fast-and-dirty method rather than the shiny and nice method
* @param string $message Text to be stripped of bbcode tags
* @param boolean $stripquotes If true, strip away quote tags AND their contents
* @param boolean $fast_and_dirty If true, use the fast-and-dirty method rather than the shiny and nice method
*
* @return string
*/

View File

@ -2618,8 +2618,8 @@ class UTF8
/**
* Strips out device control codes in the ASCII range.
*
* @param array|scalar|null Data to clean
* @return array|scalar|null Returns FALSE if error occurred
* @param array|scalar|null $data Data to clean
* @return array|scalar|null Returns FALSE if error occurred
*/
public static function strict($data)
{

View File

@ -44,7 +44,7 @@ class datastore_common
function datastore_common () {}
/**
* @param array(item1_title, item2_title...) or single item's title
* @param array $items (item1_title, item2_title...) or single item's title
*/
function enqueue ($items)
{