From: Michael S. <sta...@us...> - 2005-10-19 20:44:44
|
Update of /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20827/src/webapps/wera/lib Modified Files: documentLocator.inc Log Message: Part of '[ 1312204 ] Test supplied urls for exacturl'. * src/webapps/wera/lib/documentLocator.inc Remove parens surrounding exacturl. Was preventing nutchwax being able to find end of clause if url had parens. Index: documentLocator.inc =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/lib/documentLocator.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** documentLocator.inc 5 Oct 2005 22:42:47 -0000 1.3 --- documentLocator.inc 19 Oct 2005 20:44:35 -0000 1.4 *************** *** 120,124 **** $sizeofresultset = 1000; } ! $this->query = $query_end . " +(" . $query_start . ")"; $this->indexDriver->setQuery($this->query); $this->indexDriver->setSortorder($sortorder); --- 120,124 ---- $sizeofresultset = 1000; } ! $this->query = $query_end . " + " . $query_start; $this->indexDriver->setQuery($this->query); $this->indexDriver->setSortorder($sortorder); |