diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-01 19:04:20 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-01 19:04:20 +0200 |
commit | 254b8b95065b4e2f27a8d2620f26bef65269957b (patch) | |
tree | 23a0ff8b76397a5271d1aa45a6a07b0e8ed5a2f3 /apps/media | |
parent | 70cea18cce0fcdb4d8118ff2d7abccc922417a6a (diff) | |
download | nextcloud-server-254b8b95065b4e2f27a8d2620f26bef65269957b.tar.gz nextcloud-server-254b8b95065b4e2f27a8d2620f26bef65269957b.zip |
porting of OC_User to public API complete.
What better thing to do during a long train ride than refactoring ;-)
Diffstat (limited to 'apps/media')
-rwxr-xr-x[-rw-r--r--] | apps/media/tomahawk.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/media/tomahawk.php b/apps/media/tomahawk.php index 019e80b0f24..f3f3fd1c2d4 100644..100755 --- a/apps/media/tomahawk.php +++ b/apps/media/tomahawk.php @@ -29,7 +29,7 @@ require_once(OC::$APPSROOT . '/apps/media/lib_collection.php'); $user=isset($_POST['user'])?$_POST['user']:''; $pass=isset($_POST['pass'])?$_POST['pass']:''; -if(OC_User::checkPassword($user,$pass)){ +if(OCP\User::checkPassword($user,$pass)){ OC_Util::setupFS($user); OC_MEDIA_COLLECTION::$uid=$user; }else{ |