| 160 | | Ak::file_put_contents($this->_getCompiledTemplatePath(),$this->_options['code'], array('base_path' => (AK_COMPILED_VIEWS_DIR ? AK_TMP_DIR : AK_BASE_DIR))); |
|---|
| | 160 | $options = array('base_path' => (AK_COMPILED_VIEWS_DIR ? AK_TMP_DIR : AK_BASE_DIR)); |
|---|
| | 161 | if(defined('AK_UPLOAD_FILES_USING_FTP') && AK_UPLOAD_FILES_USING_FTP && !strstr($options['base_path'], AK_BASE_DIR)){ |
|---|
| | 162 | $options['ftp'] = false; |
|---|
| | 163 | } |
|---|
| | 164 | Ak::file_put_contents($this->_getCompiledTemplatePath(), $this->_options['code'], $options); |
|---|