summaryrefslogtreecommitdiff
path: root/lib/plugins/config
diff options
context:
space:
mode:
authorAnika Henke <a.c.henke@arcor.de>2006-03-08 23:50:06 +0100
committerAnika Henke <a.c.henke@arcor.de>2006-03-08 23:50:06 +0100
commitdaf4ca4eab09b934b46fb35293fcbfd854571ed4 (patch)
tree7cd77377374da36f768ade8e83bdf013c1e2c62b /lib/plugins/config
parent58dde80d4add67c5251ac3f0107968131fb471b3 (diff)
downloadrpg-daf4ca4eab09b934b46fb35293fcbfd854571ed4.tar.gz
rpg-daf4ca4eab09b934b46fb35293fcbfd854571ed4.tar.bz2
killed some borders, widths and other strictness bugs
darcs-hash:20060308225006-d5083-d273d41551fee37d28442beef847eb57891ba73e.gz
Diffstat (limited to 'lib/plugins/config')
-rw-r--r--lib/plugins/config/settings/config.class.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/plugins/config/settings/config.class.php b/lib/plugins/config/settings/config.class.php
index d5e77a261..48931bfc3 100644
--- a/lib/plugins/config/settings/config.class.php
+++ b/lib/plugins/config/settings/config.class.php
@@ -463,8 +463,8 @@ if (!class_exists('setting_onoff')) {
$key = htmlspecialchars($this->_key);
$checked = ($value) ? ' checked="checked"' : '';
- $label = '<label for="config_'.$key.'">'.$this->prompt($plugin).'</label>';
- $input = '<div class="input"><input id="config_'.$key.'" name="config['.$key.']" type="checkbox" class="checkbox" value="1"'.$checked.$disable.'/></div>';
+ $label = '<label for="config__'.$key.'">'.$this->prompt($plugin).'</label>';
+ $input = '<div class="input"><input id="config__'.$key.'" name="config['.$key.']" type="checkbox" class="checkbox" value="1"'.$checked.$disable.'/></div>';
return array($label,$input);
}
@@ -509,7 +509,7 @@ if (!class_exists('setting_multichoice')) {
$key = htmlspecialchars($this->_key);
- $label = '<label for="config_'.$key.'">'.$this->prompt($plugin).'</label>';
+ $label = '<label for="config__'.$key.'">'.$this->prompt($plugin).'</label>';
$input = "<div class=\"input\">\n";
$input .= '<select class="edit" id="config__'.$key.'" name="config['.$key.']"'.$disable.'>'."\n";