aboutsummaryrefslogtreecommitdiffstats
path: root/admin/install.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-09-20 15:04:09 +0000
committerz0rglub <z0rglub@piwigo.org>2003-09-20 15:04:09 +0000
commitef5df3db1f563b73f11598b378c4b273f7044de5 (patch)
tree77e2a54a6fd6fe6f2e0453d7fe389b90d6aa0440 /admin/install.php
parent4de359a25f9675cab6c9d5211bae6157833233cc (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--admin/install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/install.php b/admin/install.php
index 7d514ec4b..68c76d068 100644
--- a/admin/install.php
+++ b/admin/install.php
@@ -81,7 +81,7 @@ if ( $_GET['step'] == 1 )
$file_content.= "\n\$cfgUser = '". $_POST['cfgUser']."';";
$file_content.= "\n\$cfgPassword = '". $_POST['cfgPassword']."';";
$file_content.= "\n\$cfgHote = '". $_POST['cfgHote']."';";
- $file_content.= "\n\$prefix_table = '".$_POST['prefix_table']."';";
+ $file_content.= "\n\$prefixeTable = '".$_POST['prefix_table']."';";
$file_content.= "\n?>";
// writting the configuration file
if ( $fp = @fopen( '../include/mysql.inc.php', 'a+' ) )