From e9388dc3ece5e57fda38500f7d24cc63ac39a093 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 13 May 2025 18:53:46 +0200 Subject: [PATCH] use translation of documents_user_rejected in list of menu tasks --- views/bootstrap/class.Tasks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Tasks.php b/views/bootstrap/class.Tasks.php index dfb29f9fc..c37ca6773 100644 --- a/views/bootstrap/class.Tasks.php +++ b/views/bootstrap/class.Tasks.php @@ -230,7 +230,7 @@ class SeedDMS_View_Tasks extends SeedDMS_Theme_Style { $doc = $dms->getDocument($t['id']); $subitems[] = array('label'=>htmlspecialchars($doc->getName()), 'link'=>$this->params['settings']->_httpRoot."out/out.ViewDocument.php?documentid=".$doc->getID()."¤ttab=docinfo", 'class'=>"table-row-document", 'rel'=>"document_".$doc->getID()); } - $menuitems['tasks']['children']['rejected'] = array('label'=>getMLText('documents_rejected'), 'children'=>$subitems); + $menuitems['tasks']['children']['rejected'] = array('label'=>getMLText('documents_user_rejected'), 'children'=>$subitems); } $menuitems['tasks']['children']['divider'] = array('divider'=>true); $menuitems['tasks']['children']['mydocuments'] = array('label'=>getMLText('my_documents'), 'link'=>$this->params['settings']->_httpRoot.'out/out.MyDocuments.php');