diff options
author | momo-i <momo-i@ampache> | 2010-07-06 22:06:52 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2010-07-06 22:06:52 +0000 |
commit | fede8cc8bd656c12ae5c18480cee1c1b8aa7c694 (patch) | |
tree | 131af31e35a6d1e6f21e603b206c9331f9385f24 /templates/show_install_config.inc.php | |
parent | 3dc05fa67f298c8cf7e67d3b2bc20c5b1e78d150 (diff) | |
download | ampache-fede8cc8bd656c12ae5c18480cee1c1b8aa7c694.tar.gz ampache-fede8cc8bd656c12ae5c18480cee1c1b8aa7c694.tar.bz2 ampache-fede8cc8bd656c12ae5c18480cee1c1b8aa7c694.zip |
Fixed: didn't show lang and Charset, if Write Config.
Diffstat (limited to 'templates/show_install_config.inc.php')
-rw-r--r-- | templates/show_install_config.inc.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/show_install_config.inc.php b/templates/show_install_config.inc.php index bbf38e34..70d95975 100644 --- a/templates/show_install_config.inc.php +++ b/templates/show_install_config.inc.php @@ -84,7 +84,11 @@ $prefix = realpath(dirname(__FILE__). "/../"); </tr> <tr> <td> </td> - <td><input type="submit" value="<?php echo _('Write Config'); ?>" /></td> + <td> + <input type="submit" value="<?php echo _('Write Config'); ?>" /> + <input type="hidden" name="htmllang" value="<?php echo $htmllang; ?>" /> + <input type="hidden" name="charset" value="<?php echo $charset; ?>" /> + </td> </tr> </table> </form> |