diff options
author | M. Dent <dentm42@gmail.com> | 2018-10-03 03:18:43 +0200 |
---|---|---|
committer | M. Dent <dentm42@gmail.com> | 2018-10-03 03:18:43 +0200 |
commit | 29e1302f3fb8028202770d7a966b65af236897eb (patch) | |
tree | 1fcd9b859f8749b6655d8493e1b60108e294b799 | |
parent | 67f19745fd5c66345a7e64b3d5fdedf6c1a6b8b6 (diff) | |
parent | 798f2466e4c1ffaa02ec1b0c9d504641507b2a4b (diff) | |
download | volse-hubzilla-29e1302f3fb8028202770d7a966b65af236897eb.tar.gz volse-hubzilla-29e1302f3fb8028202770d7a966b65af236897eb.tar.bz2 volse-hubzilla-29e1302f3fb8028202770d7a966b65af236897eb.zip |
Merge branch 'dev' into 'dev'
Fix misplaced comma with period.
See merge request hubzilla/core!1304
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 7782eac40..f03d0b860 100644 --- a/include/text.php +++ b/include/text.php @@ -41,7 +41,7 @@ function replace_macros($s, $r) { try { $output = $t->replace_macros($arr['template'], $arr['params']); } catch (Exception $e) { - logger("Unable to render template: ",$e->getMessage()); + logger("Unable to render template: ".$e->getMessage()); $output = "<h3>ERROR: there was an error creating the output.</h3>"; } |