ChangeSet ID: 30977 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/03/16 19:51:59
Modified files: include : util.php
Log message: Alexander Nicolaysen Sørnes alex@thehandofagony.com Fix ambiguous query
Patch: http://cvs.winehq.org/patch.py?id=30977
Old revision New revision Changes Path 1.84 1.85 +1 -1 appdb/include/util.php
Index: appdb/include/util.php diff -u -p appdb/include/util.php:1.84 appdb/include/util.php:1.85 --- appdb/include/util.php:1.84 17 Mar 2007 0:51:59 -0000 +++ appdb/include/util.php 17 Mar 2007 0:51:59 -0000 @@ -431,7 +431,7 @@ function searchForApplication($search_wo FROM appFamily, vendor WHERE appName != 'NONAME' AND appFamily.vendorId = vendor.vendorId - AND queued = 'false' + AND appFamily.queued = 'false' AND (appName LIKE '%".mysql_real_escape_string($search_words)."%' OR keywords LIKE '%".mysql_real_escape_string($search_words)."%'";