]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixed incorrect call for $vars in group forum topics.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 19 May 2010 18:20:44 +0000 (18:20 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 19 May 2010 18:20:44 +0000 (18:20 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@6100 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/groups/views/default/forum/topics.php

index 6280fe31ab240a2466a0612c3f40abffd015e4da..915c957d393376b4db574dcfea68a50c4ad43a64 100644 (file)
@@ -1,14 +1,14 @@
 <?php
        /**
         * Elgg groups plugin
-        * 
+        *
         * @package ElggGroups
         * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
         * @author Curverider
         * @copyright Curverider Ltd 2008-2010
         * @link http://elgg.com/
         */
-        
+
 ?>
 <div id="content_header" class="clearfloat">
        <div class="content_header_title">
                if(page_owner_entity()->isMember($vars['user'])) {
        ?>
                <div class="content_header_options">
-                       <a class="action_button" href="<?php echo $vars['url']; ?>mod/groups/addtopic.php?group_guid=<?php echo vars('group_guid'); ?>"><?php echo elgg_echo("groups:addtopic"); ?></a>
+                       <a class="action_button" href="<?php echo $vars['url']; ?>mod/groups/addtopic.php?group_guid=<?php echo $vars['group_guid']; ?>"><?php echo elgg_echo("groups:addtopic"); ?></a>
                </div>
        <?php
                }
        ?>
-</div>   
+</div>
 <?php
        if($vars['topics'])
                echo $vars['topics'];