aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-15 02:50:28 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-15 02:50:28 +0000
commit1743d42e12f18ee914be5095851597d7943d626e (patch)
tree1526eff740c46a793551217cfdcf319525c24338 /mod
parent7f171efe1cd5195c7f8fd9245f6aa73cf8488cbe (diff)
downloadelgg-1743d42e12f18ee914be5095851597d7943d626e.tar.gz
elgg-1743d42e12f18ee914be5095851597d7943d626e.tar.bz2
ECML keyword help page now properly lists all registered keywords.
git-svn-id: http://code.elgg.org/elgg/trunk@5742 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r--mod/ecml/views/default/ecml/help.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/mod/ecml/views/default/ecml/help.php b/mod/ecml/views/default/ecml/help.php
index aed6bd2e1..ed2d1eeec 100644
--- a/mod/ecml/views/default/ecml/help.php
+++ b/mod/ecml/views/default/ecml/help.php
@@ -9,24 +9,24 @@
* @link http://elgg.org/
*/
-$keywords = $vars['config']->sitepages_keywords;
+$keywords = $vars['config']->ecml_keywords;
$title = elgg_echo('ecml:keywords_title');
$instructions = elgg_echo('ecml:keywords_instructions');
$more_info = elgg_echo('ecml:keywords_instructions_more');
-
-
$keywords_html = '';
foreach ($keywords as $keyword => $info) {
$desc = htmlentities($info['description']);
- $keywords_html .= "<li><acronym title=\"$desc\">[[$keyword]]</acronym></li>";
+ $keywords_html .= "
+<dt>[[$keyword]]</dt>
+<dd>$desc</dd>";
}
echo "
<h3>$title</h3>
<p>$instructions</p>
$more_info
-<ul>
+<dl>
$keywords_html
-</ul>
+</dl>
"; \ No newline at end of file