From 500bade66a9bd899dbd1ca393f170c5cf7e02400 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 23 Jun 2017 12:58:36 +0200 Subject: [PATCH] get name and comment from parameters after preUpdateDocument has been called --- controllers/class.UpdateDocument.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controllers/class.UpdateDocument.php b/controllers/class.UpdateDocument.php index 8cd9ea818..c87084ddd 100644 --- a/controllers/class.UpdateDocument.php +++ b/controllers/class.UpdateDocument.php @@ -35,6 +35,8 @@ class SeedDMS_Controller_UpdateDocument extends SeedDMS_Controller_Common { return null; } + $name = $this->getParam('name'); + $comment = $this->getParam('comment'); $dms = $this->params['dms']; $user = $this->params['user']; $document = $this->params['document'];