diff options
| author | wjames5 <will@tekimaki.com> | 2006-09-06 21:01:32 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2006-09-06 21:01:32 +0000 |
| commit | 051591c2cb595f0b60e5d4d8a0ecc3a01b9fef55 (patch) | |
| tree | a6834975b45d9a416aed596c97632221bd505816 | |
| parent | 5d0a1ef0bc874b6de6c450a5426559e720e93734 (diff) | |
| download | liberty-051591c2cb595f0b60e5d4d8a0ecc3a01b9fef55.tar.gz liberty-051591c2cb595f0b60e5d4d8a0ecc3a01b9fef55.tar.bz2 liberty-051591c2cb595f0b60e5d4d8a0ecc3a01b9fef55.zip | |
patches WHERE clause in getContentList
| -rw-r--r-- | LibertyContent.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LibertyContent.php b/LibertyContent.php index 2abfd63..36dd205 100644 --- a/LibertyContent.php +++ b/LibertyContent.php @@ -3,7 +3,7 @@ * Management of Liberty content * * @package liberty -* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyContent.php,v 1.137 2006/09/06 09:02:47 spiderr Exp $ +* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyContent.php,v 1.138 2006/09/06 21:01:32 wjames5 Exp $ * @author spider <spider@steelsun.com> */ @@ -1531,7 +1531,7 @@ class LibertyContent extends LibertyBase { INNER JOIN `".BIT_DB_PREFIX."users_users` uue ON (lc.`modifier_user_id`=uue.`user_id`) LEFT OUTER JOIN `".BIT_DB_PREFIX."liberty_content_hits` lch ON( lc.`content_id` = lch.`content_id`) $joinSql - WHERE lc.`user_id`=uuc.`user_id` + WHERE lc.`user_id`=lc.`user_id` $whereSql ORDER BY ".$orderTable.$this->mDb->convert_sortmode($pListHash['sort_mode']); |
