Changeset 1333 for feedmelinks/modules/highest-linking-users.inc.php
- Timestamp:
- 02/16/07 11:09:22 (2 years ago)
- Files:
-
- feedmelinks/modules/highest-linking-users.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/modules/highest-linking-users.inc.php
r1331 r1333 3 3 4 4 $limit = $limit ? $limit : 7; 5 $qs = "SELECT COUNT(*) AS lc, userid AS u FROM links WHERE isPrivate IS NULL GROUP BY userid ORDER BY lc DESC LIMIT $limit;";5 $qs = getQuery( "top_linking_users", 7 ); 6 6 7 7 $con = mysql_connect();