summaryrefslogtreecommitdiff
path: root/thumbnailer.php
diff options
context:
space:
mode:
authorturon <spider@turon>2016-02-17 23:03:09 -0500
committerturon <spider@turon>2016-02-17 23:03:09 -0500
commit9f4a9184f4054e3620676fa261d5272aef5f4b3c (patch)
tree8f18cbb71fc838908a2c4a84272f37348b29b1c9 /thumbnailer.php
parent982f588600b6311eea68f1b141a18a96bcdc6d28 (diff)
downloadfisheye-9f4a9184f4054e3620676fa261d5272aef5f4b3c.tar.gz
fisheye-9f4a9184f4054e3620676fa261d5272aef5f4b3c.tar.bz2
fisheye-9f4a9184f4054e3620676fa261d5272aef5f4b3c.zip
pass FALSE instead of NULL into ADODB function bindVars param
Diffstat (limited to 'thumbnailer.php')
-rw-r--r--thumbnailer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/thumbnailer.php b/thumbnailer.php
index 95ab736..971ac15 100644
--- a/thumbnailer.php
+++ b/thumbnailer.php
@@ -49,7 +49,7 @@
FROM `".BIT_DB_PREFIX."liberty_process_queue` pq
WHERE pq.begin_date IS NULL
ORDER BY pq.queue_date";
- $rs = $gBitSystem->mDb->query( $sql, NULL, $thumbCount );
+ $rs = $gBitSystem->mDb->query( $sql, FALSE, $thumbCount );
$processContent = array();
while( !$rs->EOF ) {