diff --git a/php/api.php b/php/api.php index d043a4d..4c259cb 100755 --- a/php/api.php +++ b/php/api.php @@ -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); diff --git a/php/define.php b/php/define.php index fb045f2..65b99d6 100644 --- a/php/define.php +++ b/php/define.php @@ -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 diff --git a/plugins/check/index.php b/plugins/check/index.php index 07c7701..dfcbd12 100644 --- a/plugins/check/index.php +++ b/plugins/check/index.php @@ -56,8 +56,7 @@ if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error: Configuration not found. Plea else require(LYCHEE_CONFIG_FILE); # Define the table prefix -if (!isset($dbTablePrefix)) $dbTablePrefix = ''; -defineTablePrefix($dbTablePrefix); +defineTablePrefix(@$dbTablePrefix); # Database $database = new mysqli($dbHost, $dbUser, $dbPassword, $dbName); diff --git a/plugins/displaylog/index.php b/plugins/displaylog/index.php index e6e690b..a9ac561 100644 --- a/plugins/displaylog/index.php +++ b/plugins/displaylog/index.php @@ -23,8 +23,7 @@ if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error 001: Configuration not found. require(LYCHEE_CONFIG_FILE); # Define the table prefix -if (!isset($dbTablePrefix)) $dbTablePrefix = ''; -defineTablePrefix($dbTablePrefix); +defineTablePrefix(@$dbTablePrefix); # Declare $result = ''; diff --git a/view.php b/view.php index f051f21..c1b1160 100644 --- a/view.php +++ b/view.php @@ -29,8 +29,7 @@ require(LYCHEE_CONFIG_FILE); # Define the table prefix - if (!isset($dbTablePrefix)) $dbTablePrefix = ''; - defineTablePrefix($dbTablePrefix); + defineTablePrefix(@$dbTablePrefix); $database = Database::connect($dbHost, $dbUser, $dbPassword, $dbName);