Another typo

This commit is contained in:
Thomas Willingham 2013-05-14 23:27:07 +01:00
parent 069e874e6d
commit 3b96a19fd3

View File

@ -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 "";
}
}
}