Skip to content
Snippets Groups Projects
Commit 015ae22a authored by Andreas Gohr's avatar Andreas Gohr
Browse files

Merge pull request #102 from rsnitsch/master

Fixes messages.txt's modification timestamp not being updated.
parents 5a9866e9 c07c5d93
No related branches found
No related tags found
No related merge requests found
......@@ -25,11 +25,14 @@ function checkUpdateMessages(){
// check if new messages needs to be fetched
if($lm < time()-(60*60*24) || $lm < @filemtime(DOKU_INC.DOKU_SCRIPT)){
dbglog("checkUpdatesMessages(): downloading messages.txt");
$http = new DokuHTTPClient();
$http->timeout = 8;
$data = $http->get(DOKU_MESSAGEURL.$updateVersion);
io_saveFile($cf,$data);
@touch($cf);
}else{
dbglog("checkUpdatesMessages(): messages.txt up to date");
$data = io_readFile($cf);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment