fixing owncloud version

This commit is contained in:
Thomas Müller 2014-12-15 12:23:56 +01:00
parent 79dfff2b4a
commit e58b9d3eb7
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@ class Platform {
* @return string
*/
public function getOcVersion() {
return OC_Util::getVersion();
$v = OC_Util::getVersion();
return join('.', $v);
}
/**