Remove unused function qp()

This commit is contained in:
Philipp Holzer 2019-10-23 00:55:14 +02:00
parent 5843a80b6c
commit 2c31916757
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 0 additions and 10 deletions

View File

@ -17,16 +17,6 @@ function activity_match($haystack,$needle) {
return (($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle, NAMESPACE_ACTIVITY_SCHEMA)));
}
/**
* quick and dirty quoted_printable encoding
*
* @param string $s
* @return string
*/
function qp($s) {
return str_replace("%", "=", rawurlencode($s));
}
/**
* @brief Given a text string, convert from bbcode to html and add smilie icons.
*