summaryrefslogtreecommitdiff
path: root/inc/infoutils.php
diff options
context:
space:
mode:
authorChristoph Schindler <hop@30hopsmax.at>2013-08-23 15:44:58 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-08-23 15:44:58 +0200
commitd2d7bf0b6c06c3d6eae1fe4b855dd35484421f23 (patch)
tree8fc9396e74d46c7577153e41a8ee2ffacf08b84a /inc/infoutils.php
parent3bd5bd97dce4baed3305e5142998159820f4ff25 (diff)
downloadrpg-d2d7bf0b6c06c3d6eae1fe4b855dd35484421f23.tar.gz
rpg-d2d7bf0b6c06c3d6eae1fe4b855dd35484421f23.tar.bz2
FS#2840 fix typo in debug message
Diffstat (limited to 'inc/infoutils.php')
-rw-r--r--inc/infoutils.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/infoutils.php b/inc/infoutils.php
index 71e642995..4c279e692 100644
--- a/inc/infoutils.php
+++ b/inc/infoutils.php
@@ -26,13 +26,13 @@ function checkUpdateMessages(){
// check if new messages needs to be fetched
if($lm < time()-(60*60*24) || $lm < @filemtime(DOKU_INC.DOKU_SCRIPT)){
@touch($cf);
- dbglog("checkUpdatesMessages(): downloading messages.txt");
+ dbglog("checkUpdateMessages(): downloading messages.txt");
$http = new DokuHTTPClient();
$http->timeout = 12;
$data = $http->get(DOKU_MESSAGEURL.$updateVersion);
io_saveFile($cf,$data);
}else{
- dbglog("checkUpdatesMessages(): messages.txt up to date");
+ dbglog("checkUpdateMessages(): messages.txt up to date");
$data = io_readFile($cf);
}