]> git.mxchange.org Git - friendica.git/blobdiff - mod/match.php
Bugfix: The user id wasn't fetched correctly.
[friendica.git] / mod / match.php
index aa0a69fc954441e12ad4322b569672e95b5c6901..7773636420658cc015c2db7a4076d5ad9e40b589 100644 (file)
@@ -9,7 +9,9 @@ function match_content(&$a) {
 
        $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
 
-       $o .= '<h2>' . t('Profile Match') . '</h2>';
+       $o .= replace_macros(get_markup_template("section_title.tpl"),array(
+               '$title' => t('Profile Match')
+       ));
 
        $r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
                intval(local_user())