]> git.mxchange.org Git - friendica.git/commitdiff
Added documentation
authorMichael <heluecht@pirati.ca>
Mon, 8 May 2017 17:29:46 +0000 (17:29 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 8 May 2017 17:29:46 +0000 (17:29 +0000)
include/bbcode.php

index 4b5384a615f183b1190426d7c6058fac177665a8..9518fe7dd1fd1dee880a53c78201e021b6e3bf38 100644 (file)
@@ -170,6 +170,11 @@ function cleancss($input) {
        return $cleaned;
 }
 
+/**
+ * @brief Converts [url] BBCodes in a format that looks fine on Mastodon.
+ * @param array $match Array with the matching values
+ * @return string replaced value
+ */
 function bb_style_url($match) {
         $url = $match[1];
 
@@ -203,7 +208,6 @@ function bb_style_url($match) {
         }
 }
 
-
 function stripcode_br_cb($s) {
        return '[code]' . str_replace('<br />', '', $s[1]) . '[/code]';
 }