Update of /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13455
Modified Files:
index.php
Log Message:
Fixed bug 1322554
Index: index.php
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/wera/src/webapps/wera/index.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** index.php 6 Oct 2005 02:07:37 -0000 1.4
--- index.php 10 Oct 2005 13:13:22 -0000 1.5
***************
*** 259,266 ****
$numversions_text2 = "";
! if ($conf_show_num_verions_matching_query) {
$vquery = $querystring . " exacturl:" . urlencode($value["url"]);
$search2->setQuery($vquery);
-
if ($search2->doQuery()) {
$versions = $search2->getResultSet();
--- 259,265 ----
$numversions_text2 = "";
! if ($conf_show_num_verions_matching_query and !strstr($querystring, "exacturl:")) {
$vquery = $querystring . " exacturl:" . urlencode($value["url"]);
$search2->setQuery($vquery);
if ($search2->doQuery()) {
$versions = $search2->getResultSet();
|