diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-03-18 14:12:06 +0100 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-03-18 14:15:38 +0100 |
commit | 0f494970d1b299171ff36ef395adb444bf775355 (patch) | |
tree | c4890ab803b8160da214038998407eeecd157260 /lib/base.php | |
parent | 1df039716391d0708168ee6fd0c2c2ad4bac8059 (diff) | |
download | nextcloud-server-0f494970d1b299171ff36ef395adb444bf775355.tar.gz nextcloud-server-0f494970d1b299171ff36ef395adb444bf775355.zip |
Fix a couple of minor coding errors
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index 01a53656789..75914d61688 100644 --- a/lib/base.php +++ b/lib/base.php @@ -104,7 +104,7 @@ if( !$RUNTIME_NOSETUPFS ){ } // Add the stuff we need always -OC_UTIL::addPersonalMenuEntry( array( "order" => 1000, "href" => OC_HELPER::linkTo( "", "index.php?logout=1" ), "name" => "Logout" )); +OC_APP::addPersonalMenuEntry( array( "order" => 1000, "href" => OC_HELPER::linkTo( "", "index.php?logout=1" ), "name" => "Logout" )); OC_UTIL::addScript( "jquery-1.5.min" ); OC_UTIL::addScript( "jquery-ui-1.8.10.custom.min" ); OC_UTIL::addScript( "js" ); |