diff options
author | z0rglub <z0rglub@piwigo.org> | 2003-09-20 15:04:09 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2003-09-20 15:04:09 +0000 |
commit | ef5df3db1f563b73f11598b378c4b273f7044de5 (patch) | |
tree | 77e2a54a6fd6fe6f2e0453d7fe389b90d6aa0440 /include/functions.inc.php | |
parent | 4de359a25f9675cab6c9d5211bae6157833233cc (diff) |
Using the same name for variables in ./include/mysql.inc.php
git-svn-id: http://piwigo.org/svn/trunk@141 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index 6ab5d960c..5eeb2f4a7 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -318,7 +318,7 @@ function replace_search( $string, $search ) function database_connection() { include( PREFIX_INCLUDE.'./include/mysql.inc.php' ); - define( PREFIX_TABLE, $prefix_table ); + define( PREFIX_TABLE, $prefixeTable ); @mysql_connect( $cfgHote, $cfgUser, $cfgPassword ) or die ( "Could not connect to server" ); |