diff options
author | M.Dent <dentm42@dm42.net> | 2018-10-02 21:14:36 -0400 |
---|---|---|
committer | M.Dent <dentm42@dm42.net> | 2018-10-02 21:14:36 -0400 |
commit | 798f2466e4c1ffaa02ec1b0c9d504641507b2a4b (patch) | |
tree | 19fb107bbafece4a1a3870bf31a260086f600bb5 | |
parent | 8febcc27056fb6bae83a81c523047ec96d38489a (diff) | |
download | volse-hubzilla-798f2466e4c1ffaa02ec1b0c9d504641507b2a4b.tar.gz volse-hubzilla-798f2466e4c1ffaa02ec1b0c9d504641507b2a4b.tar.bz2 volse-hubzilla-798f2466e4c1ffaa02ec1b0c9d504641507b2a4b.zip |
Fix misplaced comma with period.
-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>"; } |