1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Supress warning message. is_executable() outputs a warning in case there is

no such file...
This commit is contained in:
Gabor Hojtsy
2003-01-10 09:59:23 +00:00
parent 961d3ea521
commit 4d52272bb9
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ if (isset($_SERVER['HTSEARCH_PROG'])) {
$htsearch_prog = $_SERVER['HTSEARCH_PROG'];
$searchtype = 1;
}
if (!is_executable($htsearch_prog)) {
if (!@is_executable($htsearch_prog)) {
unset($htsearch_prog);
}
if (!isset($htsearch_prog)) {

View File

@@ -27,7 +27,7 @@ if (isset($_SERVER['HTSEARCH_PROG'])) {
// If the program to use to search is not excutable, we cannot
// get search results, regardless of what we do
if (!is_executable($htsearch_prog)) {
if (!@is_executable($htsearch_prog)) {
unset($htsearch_prog);
}