1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-29 15:41:13 +03:00

minor addition for later version of php requiring $HTTP_GET_VARS. doc/*:

* doc/search.php.incl: minor addition for later version of php
  requiring $HTTP_GET_VARS.
  doc/*: rebuilt the docs
This commit is contained in:
William M. Brack
2004-03-10 11:31:37 +00:00
parent 9f7db5f4b8
commit 3ab996adeb
21 changed files with 156 additions and 143 deletions

View File

@ -1,4 +1,6 @@
<?php
$query = $HTTP_GET_VARS[ "query" ];
$scope = $HTTP_GET_VARS[ "scope" ];
// We handle only the first argument so far
$query = $_GET['query'];
$query = ltrim ($query);