View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/
Update of /cvsroot/dqsd/dqsd/searches
In directory usw-pr-cvs1:/tmp/cvs-serv18591/searches
Modified Files:
php.xml
Log Message:
[from Nikolai Devereaux]
Since the PHP search is essentially a URL, spaces get converted to %20 instead of +.
However, the PHP search script treats the arguments as GET params, so the %20 is
treated literally.
Index: php.xml
===================================================================
RCS file: /cvsroot/dqsd/dqsd/searches/php.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** php.xml 25 Oct 2002 16:59:04 -0000 1.6
--- php.xml 30 Oct 2002 13:20:52 -0000 1.7
***************
*** 17,21 ****
return false;
else
! openSearchWindow("http://www.php.net/" + q);
}
]]></script>
--- 17,21 ----
return false;
else
! openSearchWindow("http://www.php.net/" + q.replace(/\s+/g, "+"));
}
]]></script>
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/