Skip to content

Commit

Permalink
MDL-31708 wiki: Wiki 2.0 non-group member can see edit option in navi…
Browse files Browse the repository at this point in the history
…gation block
  • Loading branch information
leblangi committed Oct 19, 2012
1 parent 7e8ae12 commit 033e846
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 2 additions & 0 deletions mod/wiki/lang/en/wiki.php
Expand Up @@ -22,8 +22,10 @@
$string['backpage'] = 'Back to page';
$string['backtomapmenu'] = 'Back to map menu';
$string['changerate'] = 'Do you wish to change it?';
$string['cannoteditpage'] = 'You can not edit this page.';
$string['cannotmanagefiles'] = 'You don\'t have permission to manage the wiki files.';
$string['cannotviewfiles'] = 'You don\'t have permission to view the wiki files.';
$string['cannotviewpage'] = 'You can not view this page.';
$string['comparesel'] = 'Compare selected';
$string['comments'] = 'Comments';
$string['commentscount'] = 'Comments ({$a})';
Expand Down
2 changes: 1 addition & 1 deletion mod/wiki/lib.php
Expand Up @@ -531,7 +531,7 @@ function wiki_extend_navigation(navigation_node $navref, $course, $module, $cm)
$node = $navref->add(get_string('view', 'wiki'), $link, navigation_node::TYPE_SETTING);
}

if (has_capability('mod/wiki:editpage', $context)) {
if (wiki_user_can_edit($subwiki)) {
$link = new moodle_url('/mod/wiki/edit.php', array('pageid' => $pageid));
$node = $navref->add(get_string('edit', 'wiki'), $link, navigation_node::TYPE_SETTING);
}
Expand Down
2 changes: 1 addition & 1 deletion mod/wiki/locallib.php
Expand Up @@ -767,7 +767,7 @@ function wiki_user_can_view($subwiki) {
// Each person owns a wiki.
if ($wiki->wikimode == 'collaborative' || $wiki->wikimode == 'individual') {
// Only members of subwiki group could view that wiki
if ($subwiki->groupid == groups_get_activity_group($cm)) {
if (groups_is_member($subwiki->groupid)) {
// Only view capability needed
return has_capability('mod/wiki:viewpage', $context);

Expand Down
11 changes: 2 additions & 9 deletions mod/wiki/pagelib.php
Expand Up @@ -172,13 +172,8 @@ protected function setup_tabs($options = array()) {
if (!$manage and !($edit and groups_is_member($currentgroup))) {
unset($this->tabs['edit']);
}
} else {
if (!has_capability('mod/wiki:editpage', $PAGE->context)) {
unset($this->tabs['edit']);
}
}


if (empty($options)) {
$this->tabs_options = array('activetab' => substr(get_class($this), 10));
} else {
Expand Down Expand Up @@ -326,8 +321,7 @@ function print_content() {
}
}
} else {
// @TODO: Tranlate it
echo "You can not view this page";
echo get_string('cannotviewpage', 'wiki');
}
}

Expand Down Expand Up @@ -419,8 +413,7 @@ function print_content() {
if (wiki_user_can_edit($this->subwiki)) {
$this->print_edit();
} else {
// @TODO: Translate it
echo "You can not edit this page";
echo get_string('cannoteditpage', 'wiki');
}
}

Expand Down

0 comments on commit 033e846

Please sign in to comment.