]> git.mxchange.org Git - friendica.git/blobdiff - mod/hovercard.php
Bugfix for pull request 3125
[friendica.git] / mod / hovercard.php
index 4a6619b78866e913cd3cc26be33eaeac85e66b7c..ec749db2088fbcfa1816185a0e198debd679e086 100644 (file)
@@ -11,7 +11,7 @@
 require_once("include/socgraph.php");
 require_once("include/Contact.php");
 
-function hovercard_init(&$a) {
+function hovercard_init(App $a) {
        // Just for testing purposes
        $_GET["mode"] = "minimal";
 }
@@ -72,15 +72,14 @@ function hovercard_content() {
                'gender' => $contact["gender"],
                'about' => $contact["about"],
                'network' => format_network_name($contact["network"], $contact["url"]),
-               'tags' => intval($contact["keywords"]),
+               'tags' => $contact["keywords"],
 //             'nsfw' => intval($contact["nsfw"]),
 //             'server_url' => $contact["server_url"],
                'bd' => (($contact["birthday"] == "0000-00-00") ? "" : $contact["birthday"]),
 //             'generation' => $contact["generation"],
-               'account_type' => ($contact['community'] ? t("Forum") : ""),
+               'account_type' => account_type($contact),
                'actions' => $actions,
        );
-
        if($datatype == "html") {
                $t = get_markup_template("hovercard.tpl");
 
@@ -97,10 +96,10 @@ function hovercard_content() {
 
 /**
  * @brief Get the raw content of a template file
- * 
+ *
  * @param string $template The name of the template
  * @param string $root Directory of the template
- * 
+ *
  * @return string|bool Output the raw content if existent, otherwise false
  */
 function get_template_content($template, $root = "") {