Browse Source

Removed $dbTablePrefix definition as defineTablePrefix() will do the same

Tobias Reich 8 years ago
parent
commit
33e16041af
5 changed files with 5 additions and 9 deletions
  1. 1 2
      php/api.php
  2. 1 1
      php/define.php
  3. 1 2
      plugins/check/index.php
  4. 1 2
      plugins/displaylog/index.php
  5. 1 2
      view.php

+ 1 - 2
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);

+ 1 - 1
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

+ 1 - 2
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);

+ 1 - 2
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 = '';

+ 1 - 2
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);