From 1c597211754856eed80161f86ef2f49e8400b483 Mon Sep 17 00:00:00 2001 From: mjollnir_ Date: Mon, 1 Sep 2008 14:36:12 +0000 Subject: [PATCH] MDL-15362 - send sha1 of entire zipfile to mahara, not just contents --- portfolio/type/mahara/lib.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)) { -- 2.39.5