diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-03-03 21:55:32 +0100 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-03-03 21:55:32 +0100 |
commit | ae5dc3efdffef75c48e5ef7cac6b40cd5720442b (patch) | |
tree | 53a0ecc40c827ae255e6f7c95a37c9a52b6d4ab8 /settings | |
parent | 94b405b64fdd1427873e49888fb0527640a10eb6 (diff) | |
download | nextcloud-server-ae5dc3efdffef75c48e5ef7cac6b40cd5720442b.tar.gz nextcloud-server-ae5dc3efdffef75c48e5ef7cac6b40cd5720442b.zip |
New classes for owncloud: OC_APP for applications, OC_PREFERENCES for user preferences
Diffstat (limited to 'settings')
-rw-r--r-- | settings/appinfo/app.php (renamed from settings/appinfo.php) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/appinfo.php b/settings/appinfo/app.php index 232aaa0f0e7..0db99441574 100644 --- a/settings/appinfo.php +++ b/settings/appinfo/app.php @@ -1,6 +1,6 @@ <?php -OC_UTIL::addApplication( array( "id" => "settings", "name" => "Settings" )); +OC_APP::register( array( "id" => "settings", "name" => "Settings" )); OC_UTIL::addNavigationEntry( array( "app" => "settings", "file" => "index.php", "name" => "Settings" )); ?> |