check if view/smarty3 folder is writable by webserver

This commit is contained in:
Fabrixxm 2013-05-08 03:26:20 -04:00
parent 258604f036
commit 4bf41b8e5d
1 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,13 @@ class FriendicaSmarty extends Smarty {
class FriendicaSmartyEngine implements ITemplateEngine {
static $name ="smarty3";
public function __construct(){
if(!is_writable('view/smarty3/')){
echo "<b>ERROR:</b> folder <tt>view/tpl/smarty3/</tt> must be writable by webserver."; killme();
}
}
// ITemplateEngine interface
public function replace_macros($s, $r) {
$template = '';