diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-09-28 13:52:26 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-09-28 13:52:26 +0200 |
commit | f2a7f230f14e0f30d9ce7ddcc6ad328ac4b0434f (patch) | |
tree | 7af027424c5c9c1b2a47d4bee5d99eb2ea7ca51a /lib | |
parent | bf3248bee9d3903cc40b4271215a3e537b68ac34 (diff) | |
download | nextcloud-server-f2a7f230f14e0f30d9ce7ddcc6ad328ac4b0434f.tar.gz nextcloud-server-f2a7f230f14e0f30d9ce7ddcc6ad328ac4b0434f.zip |
add status file. useful for external administration. show the ownClopud version at least in the config dialog.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 51d8cc4d643..dea3168e8fc 100644 --- a/lib/util.php +++ b/lib/util.php @@ -90,7 +90,15 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(1,90,0); + return array(1,91,0); + } + + /** + * get the current installed version string of ownCloud + * @return string + */ + public static function getVersionString(){ + return '2 beta 2'; } /** |