From 79ea88fe08ae64d6d287f674a1746164900b32a5 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 23 Dec 2016 12:47:43 +0100 Subject: [PATCH] MetaData: fix typo --- library/Businessprocess/Metadata.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Businessprocess/Metadata.php b/library/Businessprocess/Metadata.php index eba36e7..cfa9525 100644 --- a/library/Businessprocess/Metadata.php +++ b/library/Businessprocess/Metadata.php @@ -45,7 +45,7 @@ class Metadata if ($title === $this->name) { return $title; } else { - return sprint('%s (%s)', $title, $this->name); + return sprintf('%s (%s)', $title, $this->name); } }