From ea7c666a28441d7a16dfce88c1133e8cccd2d560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Mon, 24 Dec 2001 13:15:35 +0000 Subject: [PATCH] fixed bug #496469 - File name too long --- ChangeLog | 1 + tbl_replace.php3 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 68859bf5e..165709952 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ $Source$ 2001-12-24 Loïc Chapeaux * libraries/auth/cookie.auth.lib.php3: servers choice box was displayed even if there is only one server. + * tbl_replace.php3, line 231: fixed bug #496469 - File name too long. 2001-12-23 Marc Delisle * links to new short doc pages are now completed diff --git a/tbl_replace.php3 b/tbl_replace.php3 index 7bd8627de..72ebe96de 100755 --- a/tbl_replace.php3 +++ b/tbl_replace.php3 @@ -228,7 +228,7 @@ if (!$result) { } else { $message = $strModifications; } - if (file_exists('./' . $goto)) { + if (@file_exists('./' . $goto)) { if ($goto == 'db_details.php3' && !empty($table)) { unset($table); }