diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2020-01-29 10:43:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-29 10:43:42 +0100 |
commit | 374555f24f1f209f0c6c8db1e48b9e30ecc4fea6 (patch) | |
tree | ae7a63e2a45637c99eb690e05abe54038d1125b0 /apps | |
parent | b490c7cab1269c0e065290127905218647ef0a15 (diff) | |
parent | bbc9381358298d20e07e2cc0555533bcd65792da (diff) | |
download | nextcloud-server-374555f24f1f209f0c6c8db1e48b9e30ecc4fea6.tar.gz nextcloud-server-374555f24f1f209f0c6c8db1e48b9e30ecc4fea6.zip |
Merge pull request #19186 from nextcloud/bugfix/noid/fix-flow-error
Fix "Call to undefined method OCA\\WorkflowEngine\\Entity\\File::t()"
Diffstat (limited to 'apps')
-rw-r--r-- | apps/workflowengine/lib/Entity/File.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Entity/File.php b/apps/workflowengine/lib/Entity/File.php index e849ddce7f4..84e750815b6 100644 --- a/apps/workflowengine/lib/Entity/File.php +++ b/apps/workflowengine/lib/Entity/File.php @@ -172,7 +172,7 @@ class File implements IEntity, IDisplayText, IUrl { } $options = [ - $user ? $user->getDisplayName() : $this->t('Someone'), + $user ? $user->getDisplayName() : $this->l10n->t('Someone'), $node->getName() ]; |