|
86 : if(!file_exists(CACHE_DIR . '/config'))
87 : mkdir(CACHE_DIR . '/config', 0777);
88 : else if(file_exists($config_php))
89 : {
90> if(filemtime($config_php) > filemtime($this->filename))
91 : {
92 : require_once($config_php);
93 : $this->loadMessages();
94 : return true;
95 : }
|