diff options
Diffstat (limited to 'lib/updater.php')
-rw-r--r-- | lib/updater.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/updater.php b/lib/updater.php index 196822ac35d..deb0f05945e 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -59,9 +59,9 @@ class OC_Updater{ public static function ShowUpdatingHint(){ $data=OC_Updater::check(); if(isset($data['version']) and $data['version']<>'') { - $txt='<span style="color:#AA0000; font-weight:bold;">'.$data['versionstring'].' is available. Please click <a href="'.$data['web'].'">here</a> for more information</span>'; + $txt='<span style="color:#AA0000; font-weight:bold;">'.$data['versionstring'].' is available. Get <a href="'.$data['web'].'">more information</a></span>'; }else{ - $txt='Your ownCloud is up to date'; + $txt='up to date'; } return($txt); } |