@@ -33,8 +33,7 @@ if (!empty($_POST['function'])||!empty($_GET['function'])) {
}
# Define the table prefix
- if (!isset($dbTablePrefix)) $dbTablePrefix = '';
- defineTablePrefix($dbTablePrefix);
+ defineTablePrefix(@$dbTablePrefix);
# Connect to database
$database = Database::connect($dbHost, $dbUser, $dbPassword, $dbName);
@@ -34,7 +34,7 @@ define('LYCHEE_URL_UPLOADS_THUMB', 'uploads/thumb/');
function defineTablePrefix($dbTablePrefix) {
# This part is wrapped into a function, because it needs to be called
- # after the config-file has been loaded. Other defines are also available
+ # after the config-file has been loaded. Other defines are available
# before the config-file has been loaded.
# Parse table prefix
@@ -56,8 +56,7 @@ if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error: Configuration not found. Plea
else require(LYCHEE_CONFIG_FILE);
-if (!isset($dbTablePrefix)) $dbTablePrefix = '';
-defineTablePrefix($dbTablePrefix);
+defineTablePrefix(@$dbTablePrefix);
# Database
$database = new mysqli($dbHost, $dbUser, $dbPassword, $dbName);
@@ -23,8 +23,7 @@ if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error 001: Configuration not found.
require(LYCHEE_CONFIG_FILE);
# Declare
$result = '';
@@ -29,8 +29,7 @@