summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2009-08-25 17:40:59 +0000
committerChristian Fowler <spider@viovio.com>2009-08-25 17:40:59 +0000
commit392d63c932e8145f8181274e551c0ba4bf808a6f (patch)
treeadf48d7eca75daa0f9a8de0f73fdc3e64f0a8a62
parenta3f451127def461832e76c108fc05e36470bdbf7 (diff)
downloadfisheye-392d63c932e8145f8181274e551c0ba4bf808a6f.tar.gz
fisheye-392d63c932e8145f8181274e551c0ba4bf808a6f.tar.bz2
fisheye-392d63c932e8145f8181274e551c0ba4bf808a6f.zip
remove NULL squash on bindVars
-rw-r--r--FisheyeGallery.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/FisheyeGallery.php b/FisheyeGallery.php
index b999a4b..04b1f11 100644
--- a/FisheyeGallery.php
+++ b/FisheyeGallery.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.93 2009/05/06 18:36:12 spiderr Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_fisheye/FisheyeGallery.php,v 1.94 2009/08/25 17:40:59 spiderr Exp $
* @package fisheye
*/
@@ -89,7 +89,7 @@ class FisheyeGallery extends FisheyeBase {
$whereSql = " WHERE fg.`content_id` = ?";
$bindVars = array($this->mContentId);
} else {
- $whereSql = $bindVars = NULL;
+ $whereSql = NULL;
}
if ($whereSql) { // If we have some way to know what fisheye_gallery row to load...