]> git.mxchange.org Git - friendica-addons.git/blobdiff - forumdirectory/forumdirectory.php
Merge pull request #311 from annando/1509-new-directory
[friendica-addons.git] / forumdirectory / forumdirectory.php
index 0d7fbee804891533deffd4b888cbc0f09c081546..a709c9b1edc88979db81ba2bc284c6c14f3b87a4 100644 (file)
@@ -3,7 +3,7 @@
 * Name: Forum Directory
 * Description: Add a directory of forums hosted on your server, with verbose descriptions.
 * Version: 1.0
-* Author: Thomas Willingham <https://kakste.com/profile/beardyunixer>
+* Author: Thomas Willingham <https://beardyunixer.com/profile/beardyunixer>
 */
 
 function forumdirectory_install() {
@@ -65,7 +65,7 @@ function forumdirectory_content(&$a) {
        $tpl = get_markup_template('directory_header.tpl');
 
        $globaldir = '';
-       $gdirpath = dirname(get_config('system','directory_submit_url'));
+       $gdirpath = get_config('system','directory');
        if(strlen($gdirpath)) {
                $globaldir = '<ul><li><div id="global-directory-link"><a href="'
                . zrl($gdirpath,true) . '">' . t('Global Directory') . '</a></div></li></ul>';
@@ -168,12 +168,12 @@ function forumdirectory_content(&$a) {
 
                        $entry = replace_macros($tpl,array(
                                '$id' => $rr['id'],
-                               '$profile-link' => $profile_link,
+                               '$profile_link' => $profile_link,
                                '$photo' => $a->get_cached_avatar_image($rr[$photo]),
-                               '$alt-text' => $rr['name'],
+                               '$alt_text' => $rr['name'],
                                '$name' => $rr['name'],
                                '$details' => $pdesc . $details,
-                               '$page-type' => $page_type,
+                               '$page_type' => $page_type,
                                '$profile' => $profile,
                                '$location' => template_escape($location),
                                '$gender'   => $gender,
@@ -186,8 +186,6 @@ function forumdirectory_content(&$a) {
 
                        $arr = array('contact' => $rr, 'entry' => $entry);
 
-                       call_hooks('directory_item', $arr);
-                       
                        unset($profile);
                        unset($location);