From: mjollnir_ Date: Mon, 1 Sep 2008 14:36:12 +0000 (+0000) Subject: MDL-15362 - send sha1 of entire zipfile to mahara, not just contents X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=1c597211754856eed80161f86ef2f49e8400b483;p=moodle.git MDL-15362 - send sha1 of entire zipfile to mahara, not just contents --- diff --git a/portfolio/type/mahara/lib.php b/portfolio/type/mahara/lib.php index fc9d9468b9..c827b0dc84 100644 --- a/portfolio/type/mahara/lib.php +++ b/portfolio/type/mahara/lib.php @@ -154,7 +154,10 @@ class portfolio_plugin_mahara extends portfolio_plugin_pull_base { $client->add_param($this->token); $client->add_param($this->get('user')->username); $client->add_param($this->resolve_format()); - $client->add_param(array('filesmanifest' => $this->filesmanifest)); + $client->add_param(array( + 'filesmanifest' => $this->filesmanifest, + 'zipfilesha1' => $this->get('file')->get_contenthash() + )); $client->add_param($this->get_export_config('wait')); $this->ensure_mnethost(); if (!$client->send($this->mnethost)) {