aboutsummaryrefslogtreecommitdiffstats
path: root/lib/updater.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2012-09-07 15:22:01 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2012-09-07 15:22:01 +0200
commit3829460ab8cbb6de65c53583a20fd04cbe7927dd (patch)
tree4dc24845a5eb31b17510a621e14c15b51f16bf7b /lib/updater.php
parent785aa751bb5f9a4bcdd677b96207550482e17d3c (diff)
downloadnextcloud-server-3829460ab8cbb6de65c53583a20fd04cbe7927dd.tar.gz
nextcloud-server-3829460ab8cbb6de65c53583a20fd04cbe7927dd.zip
adding space between) and {
Diffstat (limited to 'lib/updater.php')
-rw-r--r--lib/updater.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/updater.php b/lib/updater.php
index 1b1a4eab970..ad42f2bf605 100644
--- a/lib/updater.php
+++ b/lib/updater.php
@@ -28,7 +28,7 @@ class OC_Updater{
/**
* Check if a new version is available
*/
- public static function check(){
+ public static function check() {
OC_Appconfig::setValue('core', 'lastupdatedat',microtime(true));
if(OC_Appconfig::getValue('core', 'installedat','')=='') OC_Appconfig::setValue('core', 'installedat',microtime(true));
@@ -43,7 +43,7 @@ class OC_Updater{
//fetch xml data from updater
$url=$updaterurl.'?version='.$versionstring;
$xml=@file_get_contents($url);
- if($xml==FALSE){
+ if($xml==FALSE) {
return array();
}
$data=@simplexml_load_string($xml);
@@ -57,10 +57,10 @@ class OC_Updater{
return $tmp;
}
- public static function ShowUpdatingHint(){
+ public static function ShowUpdatingHint() {
$l = OC_L10N::get('lib');
- if(OC_Config::getValue('updatechecker', true)==true){
+ if(OC_Config::getValue('updatechecker', true)==true) {
$data=OC_Updater::check();
if(isset($data['version']) and $data['version']<>'') {
$txt='<span style="color:#AA0000; font-weight:bold;">'.$l->t('%s is available. Get <a href="%s">more information</a>',array($data['versionstring'], $data['web'])).'</span>';
@@ -77,7 +77,7 @@ class OC_Updater{
/**
* do ownCloud update
*/
- public static function doUpdate(){
+ public static function doUpdate() {
//update ownCloud core