no duplicate declaration of appLicense + camelCase

remotes/origin/stable6
Thomas Müller 11 years ago
parent 6c7efd5dac
commit 1d04843ef0
  1. 9
      settings/js/apps.js

@ -29,14 +29,13 @@ OC.Settings.Apps = OC.Settings.Apps || {
page.find('span.author').text(app.author);
// FIXME licenses of downloaded apps go into app.licence, licenses of not-downloaded apps into app.license
var appLicense = '';
if (typeof(app.licence) !== 'undefined') {
var applicense = app.licence;
appLicense = app.licence;
} else if (typeof(app.license) !== 'undefined') {
var applicense = app.license;
} else {
var applicense = '';
appLicense = app.license;
}
page.find('span.licence').text(applicense);
page.find('span.licence').text(appLicense);
if (app.update !== false) {
page.find('input.update').show();

Loading…
Cancel
Save