Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-07-24 05:10:41 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-24 05:10:41 +0300
commit9fb4dcb86334f420ec140f69da5db9f73786b220 (patch)
tree1f4b6cdffb645f92b515dd7dd145d9048def806e /tbl_find_replace.php
parenta5784d8d8228cfcfa85dc17cc715443d5058f731 (diff)
Use require or include based on whether the file is being conditionally
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'tbl_find_replace.php')
-rw-r--r--tbl_find_replace.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_find_replace.php b/tbl_find_replace.php
index 0825e0e64a..83623834e8 100644
--- a/tbl_find_replace.php
+++ b/tbl_find_replace.php
@@ -12,7 +12,7 @@
* Gets some core libraries
*/
require_once 'libraries/common.inc.php';
-include_once 'libraries/tbl_common.inc.php';
+require_once 'libraries/tbl_common.inc.php';
require_once 'libraries/di/Container.class.php';
require_once 'libraries/controllers/TableSearchController.class.php';