diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-08-27 17:56:22 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-08-27 17:56:22 -0400 |
commit | 74c7890fbb3e1b52c9207e15a886f2d3820d1f6c (patch) | |
tree | 3943f1299ee5d27fbf7124d013385fa6bca3d7a0 /settings | |
parent | 98ca6c4a169334a998e3a5131a7aae12df4544d2 (diff) | |
download | nextcloud-server-74c7890fbb3e1b52c9207e15a886f2d3820d1f6c.tar.gz nextcloud-server-74c7890fbb3e1b52c9207e15a886f2d3820d1f6c.zip |
Fix undefined index license in Apps
Diffstat (limited to 'settings')
-rw-r--r-- | settings/apps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/apps.php b/settings/apps.php index d5aafd628e6..337a52fd416 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -57,7 +57,7 @@ if(is_array($catagoryNames)){ 'active'=>false, 'description'=>$app['description'], 'author'=>$app['personid'], - 'licence'=>$app['license'], + 'license'=>$app['license'], ); } } |