summaryrefslogtreecommitdiff
path: root/FisheyeGallery.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2006-11-10 18:09:55 +0000
committerChristian Fowler <spider@viovio.com>2006-11-10 18:09:55 +0000
commit9a25344ee0946d9e49f76bf958913acad7996cf9 (patch)
tree5399807e99b2720397af60bad2b70bf42ae305f8 /FisheyeGallery.php
parent2f54b21f30275fd9bd7413a0ba7c84f6f582482e (diff)
downloadfisheye-9a25344ee0946d9e49f76bf958913acad7996cf9.tar.gz
fisheye-9a25344ee0946d9e49f76bf958913acad7996cf9.tar.bz2
fisheye-9a25344ee0946d9e49f76bf958913acad7996cf9.zip
comment out public gallery lookup until issues can be resolved. fix various things related to public gals
Diffstat (limited to 'FisheyeGallery.php')
-rw-r--r--FisheyeGallery.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/FisheyeGallery.php b/FisheyeGallery.php
index 33ff143..151cc76 100644
--- a/FisheyeGallery.php
+++ b/FisheyeGallery.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.43 2006/11/10 16:33:33 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.44 2006/11/10 18:09:55 spiderr Exp $
* @package fisheye
*/
@@ -600,7 +600,7 @@ vd( $this->mErrors );
if( !empty( $pListHash['show_public'] ) ) {
$joinSql .= " LEFT OUTER JOIN `".BIT_DB_PREFIX."liberty_content_prefs` lcp ON( lcp.`content_id`=lc.`content_id` )";
- $whereSql .= " OR( lcp.`pref_name`=? AND lcp.`pref_value`=? ) ";
+ $whereSql .= " OR ( lcp.`pref_name`=? AND lcp.`pref_value`=? ) ";
$bindVars[] = 'is_public';
$bindVars[] = 'y';
}