diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-08 22:58:21 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-08 22:58:21 +0000 |
commit | dcee7f2f6230be385972af4abc9ea8653bf42668 (patch) | |
tree | ec41f0747a689a35505b34c29fbdf08c83d7cd4b /actions | |
parent | 03a4a4bebf2197097e672e094535ee067fe25441 (diff) | |
parent | 85873b1f2b5b6a3e065cf5d227df31380b6f239e (diff) |
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'actions')
-rw-r--r-- | actions/featured.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/featured.php b/actions/featured.php index f3bade6a5..86fd3f374 100644 --- a/actions/featured.php +++ b/actions/featured.php @@ -107,6 +107,7 @@ class FeaturedAction extends Action $featured_nicks = common_config('nickname', 'featured'); + if (count($featured_nicks) > 0) { $quoted = array(); @@ -118,7 +119,7 @@ class FeaturedAction extends Action $user = new User; $user->whereAdd(sprintf('nickname IN (%s)', implode(',', $quoted))); $user->limit(($this->page - 1) * PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1); - $user->orderBy('user.nickname ASC'); + $user->orderBy(common_database_tablename('user') .'.nickname ASC'); $user->find(); @@ -145,4 +146,4 @@ class FeaturedAction extends Action $this->page, 'featured'); } } -}
\ No newline at end of file +} |