Update of /cvsroot/refdb/refdb/phpweb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13673/phpweb
Modified Files:
Tag: Release_0_9_5_stable
include.php refdbsearch.php.in
Log Message:
returned include.php to original state now that the getref terms have been encased in quotes.
Index: include.php
===================================================================
RCS file: /cvsroot/refdb/refdb/phpweb/include.php,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -U2 -r1.1.2.3 -r1.1.2.4
--- include.php 10 Feb 2006 15:27:44 -0000 1.1.2.3
+++ include.php 10 Feb 2006 16:45:44 -0000 1.1.2.4
@@ -21,5 +21,5 @@
$equals = array("exact"=>"=",
- "like"=>"\~");
+ "like"=>"~");
//This array contains the more fields to be included in the display of
Index: refdbsearch.php.in
===================================================================
RCS file: /cvsroot/refdb/refdb/phpweb/Attic/refdbsearch.php.in,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -U2 -r1.1.2.2 -r1.1.2.3
--- refdbsearch.php.in 10 Feb 2006 15:27:44 -0000 1.1.2.2
+++ refdbsearch.php.in 10 Feb 2006 16:45:44 -0000 1.1.2.3
@@ -79,5 +79,5 @@
}
-$terms = "'";
+$terms = "\"";
//The following if sets the query for the Simple Query
@@ -143,5 +143,5 @@
else if( $sendQuery == "Send Advanced query" )
{
- $terms = $advquery;
+ $terms = $terms.$advquery;
}
//Query terms if you've returned from a search
@@ -151,5 +151,5 @@
}
-$cmd = $cmd.$terms."'";
+$cmd = $cmd.$terms."\"";
exec($cmd, $lines);
|