summaryrefslogtreecommitdiff
path: root/inc/infoutils.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2012-12-19 14:02:32 +0000
committerAnika Henke <anika@selfthinker.org>2012-12-19 14:02:32 +0000
commit6a34de2d02e41ec96359914a9b7fe0d1867bfef9 (patch)
tree2a19b8e662f6995b62ec7091fd8e2076652c9020 /inc/infoutils.php
parent660299a8c74d62fe8de38a1071b2efd392c08436 (diff)
downloadrpg-6a34de2d02e41ec96359914a9b7fe0d1867bfef9.tar.gz
rpg-6a34de2d02e41ec96359914a9b7fe0d1867bfef9.tar.bz2
added to version info if version is unknown
Diffstat (limited to 'inc/infoutils.php')
-rw-r--r--inc/infoutils.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/infoutils.php b/inc/infoutils.php
index a9c33acfd..92607e4fa 100644
--- a/inc/infoutils.php
+++ b/inc/infoutils.php
@@ -77,7 +77,8 @@ function getVersionData(){
if($date) $version['date'] = $date;
}
}else{
- $version['date'] = 'unknown';
+ global $updateVersion;
+ $version['date'] = 'update version '.$updateVersion;
$version['type'] = 'snapshot?';
}
return $version;