mirror of
https://github.com/moodle/moodle.git
synced 2025-04-15 05:25:08 +02:00
MDL-49490 assign: can't export to portfolio on non-submission
This commit is contained in:
parent
26653c8b5c
commit
a49fca44e0
@ -788,7 +788,7 @@ class assign_files implements renderable {
|
||||
|
||||
if (!empty($CFG->enableportfolios)) {
|
||||
require_once($CFG->libdir . '/portfoliolib.php');
|
||||
if (count($files) >= 1 &&
|
||||
if (count($files) >= 1 && !empty($sid) &&
|
||||
has_capability('mod/assign:exportownsubmission', $this->context)) {
|
||||
$button = new portfolio_add_button();
|
||||
$callbackparams = array('cmid' => $this->cm->id,
|
||||
@ -823,6 +823,7 @@ class assign_files implements renderable {
|
||||
foreach ($dir['files'] as $file) {
|
||||
$file->portfoliobutton = '';
|
||||
if (!empty($CFG->enableportfolios)) {
|
||||
require_once($CFG->libdir . '/portfoliolib.php');
|
||||
$button = new portfolio_add_button();
|
||||
if (has_capability('mod/assign:exportownsubmission', $this->context)) {
|
||||
$portfolioparams = array('cmid' => $this->cm->id, 'fileid' => $file->get_id());
|
||||
|
Loading…
x
Reference in New Issue
Block a user