]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/Profile.php
Better detial in connected OAuth applications list
[quix0rs-gnu-social.git] / classes / Profile.php
index 687215b11b64a838a98a24e88c5b6c5abd3cc5dd..fef2a21710363e8d72cb1f8f3257b98889a28626 100644 (file)
@@ -355,10 +355,11 @@ class Profile extends Memcached_DataObject
     function getApplications($offset = 0, $limit = null)
     {
         $qry =
-          'SELECT oauth_application_user.* ' .
-          'FROM oauth_application_user ' .
-          'WHERE profile_id = %d ' .
-          'ORDER BY created DESC ';
+          'SELECT a.* ' .
+          'FROM oauth_application_user u, oauth_application a ' .
+          'WHERE u.profile_id = %d ' .
+         'AND a.id = u.application_id ' .
+          'ORDER BY u.created DESC ';
 
         if ($offset > 0) {
             if (common_config('db','type') == 'pgsql') {