diff options
author | friendica <info@friendica.com> | 2013-05-14 21:29:50 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-14 21:29:50 -0700 |
commit | bbca8a906a80294275d397a29c2f89f1f9e4beff (patch) | |
tree | 2e8d9bd0f45631cde0452f07c8a0029f0a9bff50 /include | |
parent | 462f91c2cae070ea4912508ad80f04cb4cd93355 (diff) | |
parent | 3b96a19fd3f8f8b298a42df62d98f28c6ea7b715 (diff) | |
download | volse-hubzilla-bbca8a906a80294275d397a29c2f89f1f9e4beff.tar.gz volse-hubzilla-bbca8a906a80294275d397a29c2f89f1f9e4beff.tar.bz2 volse-hubzilla-bbca8a906a80294275d397a29c2f89f1f9e4beff.zip |
Merge pull request #53 from beardy-unixer/master
Doco
Diffstat (limited to 'include')
-rwxr-xr-x | include/friendica_smarty.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/friendica_smarty.php b/include/friendica_smarty.php index ec0748600..97d3b083b 100755 --- a/include/friendica_smarty.php +++ b/include/friendica_smarty.php @@ -52,7 +52,7 @@ class FriendicaSmartyEngine implements ITemplateEngine { $basecompiledir = $a->config['system']['smarty3_folder']; if (!$basecompiledir) $basecompiledir = dirname(__dir__)."/view/tpl/smarty3"; if (!is_dir($basecompiledir)) { - echo "<b>ERROR:</b> folder <tt>$basecompiledir</tt>does not exixst."; killme(); + echo "<b>ERROR:</b> folder <tt>$basecompiledir</tt>does not exist."; killme(); } if(!is_writable($basecompiledir)){ echo "<b>ERROR:</b> folder <tt>$basecompiledir</tt> must be writable by webserver."; killme(); @@ -86,4 +86,4 @@ class FriendicaSmartyEngine implements ITemplateEngine { } return ""; } -}
\ No newline at end of file +} |