diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-02-09 10:09:37 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-02-09 10:09:37 +0100 |
commit | 4a130d106c91246c046b1c924a92e674a47b7767 (patch) | |
tree | 576b512cf0f18a1f16e47e1e6ba96b07a4d3409b | |
parent | 764409117a88ac0e73f81ceb71f6b96b522b6225 (diff) | |
download | nextcloud-server-4a130d106c91246c046b1c924a92e674a47b7767.tar.gz nextcloud-server-4a130d106c91246c046b1c924a92e674a47b7767.zip |
I'm an evil bastard and I commit this 3 letter text fix without a pull request.
-rw-r--r-- | lib/app.php | 2 | ||||
-rw-r--r-- | settings/ajax/apps/ocs.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/app.php b/lib/app.php index 901a8171ef3..bf7eeef0181 100644 --- a/lib/app.php +++ b/lib/app.php @@ -671,7 +671,7 @@ class OC_App{ $info['update']=false; } else { $info['internal']=false; - $info['internallabel']='3rd Party App'; + $info['internallabel']='3rd Party'; $info['internalclass']='externalapp'; $info['update']=OC_Installer::isUpdateAvailable($app); } diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index 9bf3ccc34d2..9c5adfcfef9 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -45,7 +45,7 @@ if(is_array($categoryNames)) { $pre=$app['preview']; } if($app['label']=='recommended') { - $label='3rd Party App'; + $label='3rd Party'; } else { $label='Recommended'; } |