summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorCiaranG <ciaran@ciarang.com>2009-04-08 22:11:58 +0100
committerCiaranG <ciaran@ciarang.com>2009-04-08 22:11:58 +0100
commit85873b1f2b5b6a3e065cf5d227df31380b6f239e (patch)
tree98026e5fdd03e33fa872204a227b102dcca3cf7a /actions
parent070cd3533c3474dc065c6681befb92dac51f4bf7 (diff)
parent18c8a55ba61e507f08162149273a9a33b9b73ca0 (diff)
Merge branch 'master' of git://gitorious.org/laconica/br3nda into review/master
Diffstat (limited to 'actions')
-rw-r--r--actions/featured.php5
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
+}