removed to-do

This commit is contained in:
Michael 2017-02-05 07:02:20 +00:00
parent 9f706fcfbb
commit e9d719a299
1 changed files with 2 additions and 4 deletions

View File

@ -11,15 +11,13 @@ require_once("library/html-to-markdown/HTML_To_Markdown.php");
* @brief Callback function to replace a Diaspora style mention in a mention for Friendica * @brief Callback function to replace a Diaspora style mention in a mention for Friendica
* *
* @param array $match Matching values for the callback * @param array $match Matching values for the callback
* @return text Replaced mention * @return string Replaced mention
*/ */
function diaspora_mention2bb($match) { function diaspora_mention2bb($match) {
if ($match[2] == '') { if ($match[2] == '') {
return; return;
} }
/// @todo Don't use probe
//$data = Probe::uri($match[2]);
$data = get_contact_details_by_addr($match[2]); $data = get_contact_details_by_addr($match[2]);
$name = $match[1]; $name = $match[1];
@ -97,7 +95,7 @@ function diaspora2bb($s) {
* @brief Callback function to replace a Friendica style mention in a mention for Diaspora * @brief Callback function to replace a Friendica style mention in a mention for Diaspora
* *
* @param array $match Matching values for the callback * @param array $match Matching values for the callback
* @return text Replaced mention * @return string Replaced mention
*/ */
function diaspora_mentions($match) { function diaspora_mentions($match) {